Skip to content

Instantly share code, notes, and snippets.

@nocodesupplyco
Created December 16, 2022 19:00
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 nocodesupplyco/8616fd3e88f351f7aca0472bcb8904a9 to your computer and use it in GitHub Desktop.
Save nocodesupplyco/8616fd3e88f351f7aca0472bcb8904a9 to your computer and use it in GitHub Desktop.
Click Something When Pressing ESC Key
/* Update .class with the class of element you wish to click */
document.body.addEventListener('keydown', function (e) {
if (e.key === 'Escape') {
document.querySelector('.class').click();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment