Skip to content

Instantly share code, notes, and snippets.

@thedaviddias
Created December 11, 2012 15:33
Show Gist options
  • Save thedaviddias/4259391 to your computer and use it in GitHub Desktop.
Save thedaviddias/4259391 to your computer and use it in GitHub Desktop.
JQUERY: only numbers for phone input
$('.phone').keypress(function(key) {
if(key.charCode < 48 || key.charCode > 57) return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment