Skip to content

Instantly share code, notes, and snippets.

@johndhancock
Created October 19, 2018 14:51
Show Gist options
  • Select an option

  • Save johndhancock/ff44a424718b3bf7eb1b85f7cf05863d to your computer and use it in GitHub Desktop.

Select an option

Save johndhancock/ff44a424718b3bf7eb1b85f7cf05863d to your computer and use it in GitHub Desktop.
Esc key closing modal
document.onkeydown = function(evt) {
evt = evt || window.event;
if (evt.keyCode == 27) {
alert('Esc key pressed.');
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment