Skip to content

Instantly share code, notes, and snippets.

@Macagare
Created November 28, 2012 12:24
Show Gist options
  • Save Macagare/4160867 to your computer and use it in GitHub Desktop.
Save Macagare/4160867 to your computer and use it in GitHub Desktop.
Jquery: Disable “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