Demo jquery input number format

Jquery plugin for Input Field Number to restrict entry to float or integer number and autoformat.

Documentation on github

Basic Float 2 decimals precision

/* HTML */ <input class="input-float" type="text" value="" />
/* JS   */ $('.input-float').inputNumberFormat();

Float custom with data attribute 4 decimals precision

/* HTML */ <input class="input-float" data-decimal="4" data-decimal-auto="4" type="text" value="" />
/* JS   */ $('.input-float').inputNumberFormat();

Integer

/* HTML */ <input class="input-integer" type="text" value="" />
/* JS   */ $('.input-integer').inputNumberFormat({ 'decimal': 0 });

Allow negative number

/* HTML */ <input class="input-float-negative" type="text" value="" />
/* JS   */ $('.input-float-negative').inputNumberFormat({ 'allowNegative': true});