Skip to content

Instantly share code, notes, and snippets.

@yevhenii-horbenko
Created August 25, 2016 00:50
Show Gist options
  • Save yevhenii-horbenko/16842af3fa447dc486eceb8574efc471 to your computer and use it in GitHub Desktop.
Save yevhenii-horbenko/16842af3fa447dc486eceb8574efc471 to your computer and use it in GitHub Desktop.
Check only numbers
document.getElementById('number-check1').onkeypress = function (e) {
return !(/[А-Яа-яA-Za-z ]/.test(String.fromCharCode(e.charCode)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment