Skip to content

Instantly share code, notes, and snippets.

@vikas-git
Created September 18, 2019 10:47
Show Gist options
  • Save vikas-git/95be4c3fa4b37db6edaec9d2d523c459 to your computer and use it in GitHub Desktop.
Save vikas-git/95be4c3fa4b37db6edaec9d2d523c459 to your computer and use it in GitHub Desktop.
js code for allow only number in textbox...
$(document).on('keypress', '.only-numbers', function(e){
var keycode = (e.which) ? e.which : e.keyCode;
if (!(keycode==8 || keycode == 46)&&(keycode < 48 || keycode > 57)){
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment