Well I've set up a dynamic form where I have the 'input' plots. It has already loaded 1 value.
I have another 'input' called value, where I use the jquery mask. It works however when I change the value of the 'input' portions are created other 'input' value, and the mask stops working.
I do not have an error log in the console. Follow me code:
<script>
$(document).ready(function () {
$('.valores').mask('00.000.000,00', {
reverse: true
});
});
</script>
Does anyone know what it can be?