Created
July 10, 2018 12:24
-
-
Save mattbloomfield/e35b360fb259df583e17020abcec4ca9 to your computer and use it in GitHub Desktop.
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
Qualtrics.SurveyEngine.addOnload(function() { | |
var qid = this.questionId; | |
document.onkeydown = function(event) { | |
console.log('keydown',event); | |
if (event.which == 37) { | |
event.preventDefault(); | |
Qualtrics.SurveyEngine.registry[qid].setChoiceValue(1, true); | |
jQuery('#NextButton').click(); | |
} else if (event.which == 39) { | |
event.preventDefault(); | |
Qualtrics.SurveyEngine.registry[qid].setChoiceValue(2, true); | |
jQuery('#NextButton').click(); | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment