Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Farmatique/853e4701e2c2b89e1f94a97cf8757f56 to your computer and use it in GitHub Desktop.
Save Farmatique/853e4701e2c2b89e1f94a97cf8757f56 to your computer and use it in GitHub Desktop.
Prevent submit form on Enter press, except textarea
$(document).on("keypress", ":input:not(textarea)", function(event) {
return event.keyCode != 13;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment