Skip to content

Instantly share code, notes, and snippets.

@aa6my
Created March 1, 2018 03:49
Show Gist options
  • Save aa6my/ee3e2ad2ae3c41e1d6d95d9489d40d97 to your computer and use it in GitHub Desktop.
Save aa6my/ee3e2ad2ae3c41e1d6d95d9489d40d97 to your computer and use it in GitHub Desktop.
REGEX
$('#testing').keydown(function(e) {
if (e.keyCode === 190) {
e.preventDefault();
}
});
$('#testing').on('input propertychange paste', function (e) {
var reg = /^[1-9]+/gi;
if (this.value.match(reg)) {
this.value = this.value.replace(reg, '');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment