Solved
Automatic forwarding to next page from matrix
Hi,
I am trying to automatically forward to the next page in my survey (without having to click the next button).
I know the Javascript code for this is usually:
Qualtrics.SurveyEngine.addOnReady(function()
{
var that = this;
var answers = $$(".SingleAnswer");
for(var x = 0; x<answers.length;x++){
answers[x].observe('click', function(event) {
that.clickNextButton();
});
}
});
This works perfectly fine with single questions, but not with a matrix.
Anyone can help me out?
So just to be clear: Final question on the page that would include the code is a matrix (so multiple questions combined).
Thanks a lot!
Best answer by TomG
Count the number of choice rows in the matrix. On each click count the number of answers selected, then click next if it equals the number of choice rows.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
