I'm using the mask plugin for this link: link
I use the following jquery to do the mask:
$('.decimal').mask('000,0', {reverse: true});
However I need the maximum value to be 100.0. I've tried putting
$('.decimal').mask('100,0', {reverse: true});
But it does not work because 0 means any number so the person can put up to 199.9.
Can anyone help me?