I use the jQuery Mask Plugin v1.13.4 plugin
I have a div where I enter a value as follows:
$('#v_pg').text('PAGA R$ ' + valor_pago);
Use Jquery to update the value inside the div. But I wanted it to be formatted by the Mask as follows:
$('').mask('00.000.000,00', {
reverse: true
});
Does anyone know how to do this? or in any other way?