Skip to content

Instantly share code, notes, and snippets.

@MSerj
Created October 30, 2017 19:24
Show Gist options
  • Save MSerj/41a50356336ee8dcb667ed8eafe2acf5 to your computer and use it in GitHub Desktop.
Save MSerj/41a50356336ee8dcb667ed8eafe2acf5 to your computer and use it in GitHub Desktop.
only english chars
$(".only_english_chars").on("keypress", function(event) {
var englishAlphabetAndWhiteSpace = /[A-Za-z ]/g;
var key = String.fromCharCode(event.which);
if (event.keyCode == 8 || event.keyCode == 37 || event.keyCode == 39 || englishAlphabetAndWhiteSpace.test(key)) {
return true;
}
return false;
});
$('.only_enlgish_chars').on("paste",function(e) {
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment