am wondering … how to only accept alphabetical pressed keys from the keyboard .. i am using the jQuery .keypress method … now i wanna know how to filter the passed key …
i am trying to build a simple autocomplete plugin for jQuery …i know a about jQuery UI, but i want to do it myself …
thanks in advance 🙂
You can bind a function to the field that replaces anything that’s not in the a-z range.
Source: Allow text box only for letters using jQuery?