Skip to content

Instantly share code, notes, and snippets.

@golman
Created November 20, 2013 09:03
Show Gist options
  • Save golman/7560022 to your computer and use it in GitHub Desktop.
Save golman/7560022 to your computer and use it in GitHub Desktop.
digits-only input
$('.digits-only').keyup(function(){
if(this.value != $(this).data('last-value') && this.value.length > 0){
this.value = this.value.replace(/[^0-9]/g,'');
$(this).data('last-value', this.value);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment