Last active
January 19, 2018 16:13
-
-
Save marisusis/ae69bdf3dbaeef549174c555ab42ada4 to your computer and use it in GitHub Desktop.
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
document.onkeydown = function(e){ | |
switch(e.key) { | |
case "1": | |
document.querySelectorAll("button.answerA")[0].click(); | |
break; | |
case "2": | |
document.querySelectorAll("button.answerB")[0].click(); | |
break; | |
case "3": | |
document.querySelectorAll("button.answerC")[0].click(); | |
break; | |
case "4": | |
document.querySelectorAll("button.answerD")[0].click(); | |
break; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment