Turn OFF Autoadvance option for last question in survey | XM Community
Question

Turn OFF Autoadvance option for last question in survey

  • 19 March 2024
  • 2 replies
  • 15 views

Badge +5

DELETE


2 replies

Badge +5

DELETE

Userlevel 7
Badge +21

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