jQuery plugin to automatically add a decimal to an INPUT field.
For example, if entering body weight, you could type 1853 to get 185.3. Or if entering size in meters, you could type 186 to get 1.86.
To use:
- Include jQuery
- Include the plugin code
- Add an attribute
decimaldigits='[number of digits to place after decimal]'to each input tag you want to use it with. The value must be at least 1. - Call the plugin on the relevant fields, like this:
$("input[decimaldigits]").decimalDigitify();