Skip to content

Instantly share code, notes, and snippets.

@riix
Created July 24, 2012 04:32
Show Gist options
  • Save riix/3168057 to your computer and use it in GitHub Desktop.
Save riix/3168057 to your computer and use it in GitHub Desktop.
Keycatch Code with jQuery
$('body').bind('keypress', function(event) {
if( event.keyCode == 13 ){
$('form').eq(0).submit();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment