Skip to content

Instantly share code, notes, and snippets.

@allusis
Created March 28, 2017 03:47
Show Gist options
  • Save allusis/f4cf4dc90170b729c10a515818f3e5ad to your computer and use it in GitHub Desktop.
Save allusis/f4cf4dc90170b729c10a515818f3e5ad to your computer and use it in GitHub Desktop.
jQuery on ESC
// When ESC is pressed
$(document).on('keyup',function(evt) {
if (evt.keyCode == 27) {
// Do what you need to do.
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment