igorescobar / jQuery-Mask-Plugin

A jQuery Plugin to make masks on form fields and HTML elements.
http://igorescobar.github.io/jQuery-Mask-Plugin/
Other
4.77k stars 1.42k forks source link

Weight mask #704

Open cassianotartari opened 5 years ago

cassianotartari commented 5 years ago

Hello!

I'm trying to create a weight mask with 3 decimals precision without success.

The requisites:

  1. Comma separating the last 3 digits
  2. Maximum of 8 integer values
  3. Allow to type comma
  4. When input value is set by html with a float number, mask it, for example value="0.5 mask as the input as 0,500

Can someone help?

The best that I've tried so far is:

$('.weight').mask("##.###.##0,000", {reverse: true});

But when the input value is 0.5 the input is displaying 05.

I'm using the last version of jmask 1.14.15