Created
August 10, 2016 18:44
-
-
Save Bijesse/84c768862c6d0a0736e7286b788b7c8a to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=84c768862c6d0a0736e7286b788b7c8a
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>What Did You Click?</title> | |
</head> | |
<body> | |
<!-- Put your page markup here --> | |
</body> | |
</html> |
This file contains hidden or 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
function onKeyDown(event) { | |
//insert your code below | |
} | |
$("body").keydown(onKeyDown); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment