Skip to content

Instantly share code, notes, and snippets.

@ogabrielguerra
Created December 31, 2020 19:16
Show Gist options
  • Select an option

  • Save ogabrielguerra/cd3f1da54fffdf943f1c3d120c0af247 to your computer and use it in GitHub Desktop.

Select an option

Save ogabrielguerra/cd3f1da54fffdf943f1c3d120c0af247 to your computer and use it in GitHub Desktop.
Only numbers
$(document).ready(() => {
$(".onlyNumbers").keypress(function (e) {
if (e.which !== 8 && e.which !== 0 && (e.which < 48 || e.which > 57)) {
return false;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment