I am trying to prevent users from typing certain characters in text boxes and this is the code that I have so far :
$().ready(function() {
$(\".textbox\").keyp
When I've had to do things like this, I've used the event onkeyup
.
Instead of stripping out the chars automatically (which may lead to user confusion), why not have a regex that checks for valid chars on key up, and then maybe displays a side note to the input, something like 'You may not enter numbers in this field', or something more specific to the actual input field, 'Your city name may not include number(s).'.