Skip to content

Instantly share code, notes, and snippets.

@jpemberthy
Created December 16, 2008 02:41
Show Gist options
  • Save jpemberthy/36234 to your computer and use it in GitHub Desktop.
Save jpemberthy/36234 to your computer and use it in GitHub Desktop.
$("#emForm input.number").keypress(function(e) {
if (48 < e.which && e.which > 57) {
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment