Skip to content

Instantly share code, notes, and snippets.

@mikehibm
Last active December 13, 2015 18:38
Show Gist options
  • Save mikehibm/4956836 to your computer and use it in GitHub Desktop.
Save mikehibm/4956836 to your computer and use it in GitHub Desktop.
Prevent forms from being submitted by ENTER key in a text input field.
$(function(){
$("input[type=text]").keypress(function(e) {
var c = e.which ? e.which : e.keyCode;
return c != 13;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment