Created
September 18, 2019 10:47
-
-
Save vikas-git/95be4c3fa4b37db6edaec9d2d523c459 to your computer and use it in GitHub Desktop.
js code for allow only number in textbox...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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