Skip to content

Instantly share code, notes, and snippets.

@cagartner
Created June 13, 2013 19:55
Show Gist options
  • Save cagartner/5776812 to your computer and use it in GitHub Desktop.
Save cagartner/5776812 to your computer and use it in GitHub Desktop.
Plugin que permite a pessoa apenas digitar números
$.fn.justNumber = function () {
this.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