Created
June 8, 2020 11:06
-
-
Save gagimilicevic/a1e2e75e0d8c8817c6f1980a0d30d3f2 to your computer and use it in GitHub Desktop.
Input text field - accept only numbers
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
onkeypress="return (event.charCode !=8 && event.charCode ==0 || (event.charCode >= 48 && event.charCode <= 57))" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment