Created
May 26, 2014 05:23
-
-
Save dhargitai/3851b8e6ec36e0c0f89c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("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