I need to do the following onkeyup
of inputs
that have class virgula_nao
, obey the function:
$(document).on('keyup', '#virgula_nao', function () {
valor_do_input = valor_do_input.value.replace(/,/gi, ".");}
});
I do not know how to do this. Can anyone help me?