Skip to content

Instantly share code, notes, and snippets.

@Alir3z4
Created August 25, 2013 17:33
Show Gist options
  • Select an option

  • Save Alir3z4/6335178 to your computer and use it in GitHub Desktop.

Select an option

Save Alir3z4/6335178 to your computer and use it in GitHub Desktop.
Disable form submit
$(window).keydown(function (event) {
if (event.keyCode == 13) {
event.preventDefault();
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment