Skip to content

Instantly share code, notes, and snippets.

@iconte
Created October 19, 2016 11:44
Show Gist options
  • Save iconte/5ae3400c7031d8e9c2014740f748e5ff to your computer and use it in GitHub Desktop.
Save iconte/5ae3400c7031d8e9c2014740f748e5ff to your computer and use it in GitHub Desktop.
jquery: mascara numerico
$("#id").keypress(function (e) {
//if the letter is not digit then display error and don't type anything
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