Skip to content

Instantly share code, notes, and snippets.

@dhunmoon
Created February 2, 2017 15:18
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 dhunmoon/302688a7249ecab3d5008136693a04a7 to your computer and use it in GitHub Desktop.
Save dhunmoon/302688a7249ecab3d5008136693a04a7 to your computer and use it in GitHub Desktop.
JS: Escape Key Event
$(document).keyup(function(e) {
if (e.keyCode == 27) { // escape key maps to keycode `27`
// <DO YOUR WORK HERE>
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment