Skip to content

Instantly share code, notes, and snippets.

@fatihacet
Created November 15, 2012 08:54
Show Gist options
  • Save fatihacet/4077486 to your computer and use it in GitHub Desktop.
Save fatihacet/4077486 to your computer and use it in GitHub Desktop.
Allow pasting only numbers
$('#securityCode').bind('paste', function() {
var el = this;
setTimeout(function() {
el.value = el.value.replace(/\D/g, '');
}, 0);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment