Skip to content

Instantly share code, notes, and snippets.

@Anye
Created November 19, 2013 07:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Anye/7541604 to your computer and use it in GitHub Desktop.
Save Anye/7541604 to your computer and use it in GitHub Desktop.
keydown to submit form
document.onkeydown = function(e) {
var theEvent = e || window.event;
var code = theEvent.keyCode || theEvent.which || theEvent.charCode;
if (code == 13){
// do something
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment