Question
Automatic advance to next question after slider response
Hi,
for multiple choice questions, I usually use the following code to automatically move to the next question:
Qualtrics.SurveyEngine.addOnload(function()
{
jQuery(".statement-container div").eq(0).append("<span style='float: right;'></span>");
var that = this;
this.questionclick = function(event,element){
if (element.type == 'radio') {
that.clickNextButton();
}
}
However, for sliders this does not work. I have tried replacing "radio" with all types of things including "slider" of course, but it does not work. Any help would be appreciated.
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.