Validate numeric text field in jquery
- by mcxiand
I have this code in jquery to prevent non-numeric characters being inputted to the text field
$("#NumericField").numeric();
Now, on the text field i cant input non-numeric characters. That is OK. The problem here is if the user will paste on the text field with non numeric characters.
Is there a way/method to disable pasting if the value is non-numeric? Or is there any other approach to handle this situation that you can share?