1
Well I set up a dynamic form where I have the 'input' plots. It already with value 1 loaded.
I have another input called value, where I use jquery Mask. It works however when I change the value of the 'input' installments are created other 'input' value, and Mask stops working.
I have no bug log on the console. Follow my code:
<script>
$(document).ready(function () {
$('.valores').mask('00.000.000,00', {
reverse: true
});
});
</script>
Does anyone know what it can be?
That there is no way, you will have to run the function every time you add a new input, try to change the
$(document).ready
for$(document).bind('DOMSubtreeModified', function () {
. Make sure you...– JuniorNunes
It worked out your way.
– Hugo Borges
Fine, I’ll post the answer to make it official
– JuniorNunes