Skip to content

Instantly share code, notes, and snippets.

@b1azk0
b1azk0 / Qualtrics_ReverseAnswerChoices.js
Created June 27, 2019 11:56 — forked from marketinview/reverseMCAnswerChoices.js
Qualtrics: Randomly reverse answer choices in multiple choice question. #qualtrics #js #jq #mc #random #reverse
Qualtrics.SurveyEngine.addOnload(function() {
var rand = Math.round(Math.random());
if(rand == 1) {
var choices = jQuery("#"+this.questionId+" li.Selection");
var lastChoice = choices.last();
for(i=0;i<choices.length-1;i++) {
lastChoice.after(choices[i]);
}
}
});