Skip to content

Instantly share code, notes, and snippets.

@pixelchar
Created October 15, 2013 14:26
Show Gist options
  • Save pixelchar/6992377 to your computer and use it in GitHub Desktop.
Save pixelchar/6992377 to your computer and use it in GitHub Desktop.
Disable the “Enter” key in forms
$("#form").keypress(function(e) {
if (e.which == 13) {
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment