Skip to content

Instantly share code, notes, and snippets.

@omernaci
Created November 21, 2018 04:38
Show Gist options
  • Select an option

  • Save omernaci/1e9fd8c93ba5075f8e644e0dea2a6da9 to your computer and use it in GitHub Desktop.

Select an option

Save omernaci/1e9fd8c93ba5075f8e644e0dea2a6da9 to your computer and use it in GitHub Desktop.
Jquery Number Validation only Allow Ctrl + V,C,S,X
$('#theField').on('keypress input', function() {
var value = $(this).val();
value = value.replace(/\D+/, ''); // removes any non-number char
$(this).val(value);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment