Skip to content

Instantly share code, notes, and snippets.

@kishorenc
Created January 21, 2012 03:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kishorenc/1651150 to your computer and use it in GitHub Desktop.
Save kishorenc/1651150 to your computer and use it in GitHub Desktop.
Allow only navigational keys on keydown
if(e.keyCode>46 && e.keyCode<112 || e.keyCode>123 || e.keyCode == 32 || e.keyCode == 13) return false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment