I am trying to add percentage symbols for the values given on the increments for the slider question- is there a java code or some capabilities through qualtrics to allow me to do this?
Page 1 / 1
If you want to add % signs to the scale, you can do this (code for “New Experience” would be different):
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+qobj.questionId+" ul.numbers li").each(function() {
this.innerText = this.innerText + "%";
});
});
Oops, I copied it from somewhere else and forgot to change a variable name. Corrected:
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" ul.numbers li").each(function() {
this.innerText = this.innerText + "%";
});
});
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.