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