Skip to content

Instantly share code, notes, and snippets.

@jportella93
Created September 16, 2018 21:03
Show Gist options
  • Save jportella93/c5b74e1f33460db37583276da3419f05 to your computer and use it in GitHub Desktop.
Save jportella93/c5b74e1f33460db37583276da3419f05 to your computer and use it in GitHub Desktop.
Detect key combinations in the browser
document.addEventListener ("keydown", function (e) {
if (e.ctrlKey && e.key === "1") {
alert('pressed ctrl + 1')
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment