Skip to content

Instantly share code, notes, and snippets.

@ajitam
Created September 18, 2013 12:11
Show Gist options
  • Save ajitam/6608282 to your computer and use it in GitHub Desktop.
Save ajitam/6608282 to your computer and use it in GitHub Desktop.
Add class "js-number-only" to input to limit input to numbers only
$(".js-number-only").bind('change keyup input', function() {
var value = $(this).val();
value = value.replace(/[^0-9]+/g, '');
$(this).val(value);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment