1
$(function() {
$("input[name*='pvn'").maskMoney({
thousands : '.',
decimal : ','
});
})
I do this to pick up inputs with name='pvn'
and apply a mask, but I would like to apply this mask to all fields of the money type, because then I don’t need to do a function for each input.
It worked great! Thank you!!
– Fabberg