Skip to content

Instantly share code, notes, and snippets.

@john-evangelist
Created August 15, 2014 04:05
Show Gist options
  • Save john-evangelist/cff3ae4ad476af0aada6 to your computer and use it in GitHub Desktop.
Save john-evangelist/cff3ae4ad476af0aada6 to your computer and use it in GitHub Desktop.
prevent enter key action
$(window).keydown(function (event) {
if (event.keyCode == 13) {
event.preventDefault();
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment