Jquery Mask number with commas and decimal
Well, this worked. I just tweaked the example from the website changing dots with commas and it worked.
$('.money').mask("#,##0.00", {reverse: true});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.13.4/jquery.mask.min.js"></script>
<input class="money" type="text"/>
As you can see there is no limitation of numbers. If you want to limit them, you can do $('.money').mask('000,000,000,000,000.00', {reverse: true});
Try this mask from their website with inverting commas and dots:
$('.money').mask('000.000.000.000.000,00', {reverse: true});
to have
$('.money').mask('000,000,000,000,000.00', {reverse: true});