Skip to content

Instantly share code, notes, and snippets.

@omernaci
Last active August 15, 2018 11:18
Show Gist options
  • Select an option

  • Save omernaci/8de6fb8c63575391ffc9b02662f09892 to your computer and use it in GitHub Desktop.

Select an option

Save omernaci/8de6fb8c63575391ffc9b02662f09892 to your computer and use it in GitHub Desktop.
onkeypress number input with backspace
...
<input
onkeypress="if(event.which != 8 &amp;&amp; (event.which &lt; 48 || event.which &gt; 57)) return false;" />
...
/*
http://www.elizabethcastro.com/html/extras/entities.html
Entities for characters with special meaning in HTML and XHTML
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment