Skip to content

Instantly share code, notes, and snippets.

@marisusis
Last active January 19, 2018 16:13
Show Gist options
  • Save marisusis/ae69bdf3dbaeef549174c555ab42ada4 to your computer and use it in GitHub Desktop.
Save marisusis/ae69bdf3dbaeef549174c555ab42ada4 to your computer and use it in GitHub Desktop.
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