Skip to content

Instantly share code, notes, and snippets.

@gagimilicevic
Created June 8, 2020 11:06
Show Gist options
  • Save gagimilicevic/a1e2e75e0d8c8817c6f1980a0d30d3f2 to your computer and use it in GitHub Desktop.
Save gagimilicevic/a1e2e75e0d8c8817c6f1980a0d30d3f2 to your computer and use it in GitHub Desktop.
Input text field - accept only numbers
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