Skip to content

Instantly share code, notes, and snippets.

@MSerj
Created November 21, 2017 09:16
Show Gist options
  • Save MSerj/6a5829ac061b7ddaac6e8d51c17a3e20 to your computer and use it in GitHub Desktop.
Save MSerj/6a5829ac061b7ddaac6e8d51c17a3e20 to your computer and use it in GitHub Desktop.
only letters and spaces
//input[name=name] only letters and spaces
$('input[name=name]').on('keydown', function(e) {
var key = event.keyCode;
return ((key >= 65 && key <= 90) || key === 8 || key === 32);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment