Skip to content

Instantly share code, notes, and snippets.

@MSerj
Last active December 6, 2017 08:41
Show Gist options
  • Save MSerj/f9930e254e65aa9e51e1d85944c3f5f8 to your computer and use it in GitHub Desktop.
Save MSerj/f9930e254e65aa9e51e1d85944c3f5f8 to your computer and use it in GitHub Desktop.
only numbers
//only-numbers
$(".only-numbers").on("keypress", function (evt) {
var charCode = (evt.which) ? evt.which : event.keyCode;
return !(charCode > 31 && (charCode < 48 || charCode > 57));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment