Last active
August 29, 2015 14:12
-
-
Save nashingofteeth/8e1049e844eecf93541c to your computer and use it in GitHub Desktop.
simple hotkey script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.onkeydown = function(evt) { | |
evt = evt || window.event; | |
if (evt.keyCode == 13 && evt.ctrlKey) { | |
evt.preventDefault(); | |
alert('it works!'); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment