Skip to content

Instantly share code, notes, and snippets.

@dhargitai
Created May 26, 2014 05:23
Show Gist options
  • Save dhargitai/3851b8e6ec36e0c0f89c to your computer and use it in GitHub Desktop.
Save dhargitai/3851b8e6ec36e0c0f89c to your computer and use it in GitHub Desktop.
$("input").keypress(function(event) {
if (event.which == 13) {
event.preventDefault();
$(this).closest("form").submit();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment