jQuery-Plugins
jQuery-Plugins copied to clipboard
Decimal point problem
In Firefox if you remove a decimal point from the input box once, then you can't put a decimal point back.
Workaround for this:
if(!$(this).val() || $(this).val().indexOf('.') == -1) {
this.containsDecimal = false;
}
Put above code snippet above the line : var allow = false;