Disabling Auto Advance on certain questions | XM Community
Skip to main content

I have auto advance enabled for the whole survey using the following.
Look and Feel -> Motion -> Auto Advance on Questions and Auto Advance on Pages.
I would like to disable Auto Advance for specific questions or blocks on the survey. Is there a way to achieve this with settings or custom JavaScript?

Hello Henrik,
Considering, you have only one multiple choice question. you can disable the auto-advance from the look & feel and then use the below code as JS on the questions you would like to auto-advance.
as soon as respondent selects any option the page will be auto-advanced.

JS:
Qualtrics.SurveyEngine.addOnReady(function()
{
/*Place your JavaScript here to run when the page is fully displayed*/
this.questionclick = function(event,element){ if(jQuery('input[type="radio"]').is(':checked')){jQuery('#NextButton').click();} };

});


Leave a Reply