Skip to content

Instantly share code, notes, and snippets.

@bognerf
Created September 24, 2013 09:21
Show Gist options
  • Save bognerf/6682375 to your computer and use it in GitHub Desktop.
Save bognerf/6682375 to your computer and use it in GitHub Desktop.
Prevent a form from being sent by hitting return or enter key
//Dependency: jQuery
$('form').bind("keyup, keypress", function(e) {
var code = e.keyCode || e.which;
if (code == 13) {
e.preventDefault();
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment