Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@hatefulcrawdad
Created January 18, 2014 00:29
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 hatefulcrawdad/8484284 to your computer and use it in GitHub Desktop.
Save hatefulcrawdad/8484284 to your computer and use it in GitHub Desktop.
Always forget how to program keystrokes in jquery, so I'm creating this to reference.
$(document).keyup(function(e) {
if (e.keyCode == 27) { <DO YOUR WORK HERE> } // esc
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment