Skip to content

Instantly share code, notes, and snippets.

@JuliaZibarieva
Last active August 29, 2015 14:26
Show Gist options
  • Save JuliaZibarieva/538e70d7ece3e117072c to your computer and use it in GitHub Desktop.
Save JuliaZibarieva/538e70d7ece3e117072c to your computer and use it in GitHub Desktop.
automatically delete unwanted characters
<input type="text" id="test" name="test" value="" size="16">
<script>
function replace() {
this.value = this.value.replace(/[^0-9]+/g,'') ;
} ;
document.getElementById("test").onkeyup = replace ;
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment