Skip to content

Instantly share code, notes, and snippets.

@jmc2082
Created November 24, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmc2082/c5b3ed2eaf7e5a73c5f7 to your computer and use it in GitHub Desktop.
Save jmc2082/c5b3ed2eaf7e5a73c5f7 to your computer and use it in GitHub Desktop.
$('input').keypress(function(event){
var enterOkClass = $(this).attr('class');
if (event.which == 13 && enterOkClass != 'enterSubmit') {
event.preventDefault();
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment