0
Guys I’m using the mask plugin of this link: https://igorescobar.github.io/jQuery-Mask-Plugin/
I use the following jquery to make the mask:
$('.decimal').mask('000,0', {reverse: true});
However I need the maximum value to be 100.0. I’ve tried to put
$('.decimal').mask('100,0', {reverse: true});
But it doesn’t work because the 0 means any number so one can put up 199.9.
I wonder if someone could help me?