Skip to content

Instantly share code, notes, and snippets.

@fedorovsky
Last active November 10, 2016 13:29
Show Gist options
  • Save fedorovsky/4721d69d372d30c8a508b63901275f08 to your computer and use it in GitHub Desktop.
Save fedorovsky/4721d69d372d30c8a508b63901275f08 to your computer and use it in GitHub Desktop.
$('#txtbox').bind("change keyup input click", function() {
if (this.value.match(/[^0-9]/g)) {
this.value = this.value.replace(/[^0-9]/g, '');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment