Skip to content

Instantly share code, notes, and snippets.

@MilkZoft
Created January 16, 2012 04:41
Show Gist options
  • Select an option

  • Save MilkZoft/1619102 to your computer and use it in GitHub Desktop.

Select an option

Save MilkZoft/1619102 to your computer and use it in GitHub Desktop.
code.jobs - Disable the “Enter” key in forms - jQuery
$("#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