I would like to have a slider question, with response options, or values, of A, B, C, D, and E instead of 1, 2, 3, 4, and 5. Is there a way to do this? I've seen similar things done through JS. Thanks!
Page 1 / 1
Try this:
Qualtrics.SurveyEngine.addOnload(function() {
var letters = [" A "," B "," C "," D "," E "];
jQuery("#"+this.questionId+" ul.numbers li").each(function(i) { jQuery(this).html(letters[i]); });
});
TomG Thank you!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.