Solved
How to set auto-advance on my survey?
How can I make my survey auto-advance using JavaScript so that after a person selects the answer to a question, it auto-advances to the next page?
Best answer by AlexB
You can use this code on the last question of the page:
Qualtrics.SurveyEngine.addOnload(function()
{
var that = this;
this.questionclick = function(event,element){
if (element.type == 'radio') {
that.clickNextButton();
}
}
});
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.