Turn OFF Autoadvance option for last question in survey | XM Community
Skip to main content
Question

Turn OFF Autoadvance option for last question in survey


Forum|alt.badge.img+5

DELETE

2 replies

Forum|alt.badge.img+5
  • Author
  • Qualtrics Employee
  • 3 replies
  • March 19, 2024

DELETE


Forum|alt.badge.img+22
  • Level 7 ●●●●●●●
  • 2031 replies
  • March 19, 2024

That won’t be possible. Autoadvance is all or nothing. 

You could probably implement autoadvance manually for some questions like this:

Qualtrics.SurveyEngine.addOnReady(function () {
	const quest = this;
	const qc = quest.getQuestionContainer();

	const allInputs = qc.querySelectorAll("input");

	allInputs[1].oninput = function () {
		quest.clickNextButton();
	};
});

 


Leave a Reply