Survey Flow | XM Community
Skip to main content

Hello, everyone! I am a beginner in Qualtrics. I started creating a survey for my study, and I encountered this issue:

I created a verifiable question just to ensure that participants understand and follow instructions. In an a block, I created 2 questions in separate pages: Q1 on page 1 as the instructions page, and Q2 on page 2 as the verifiable question. 

I want participants to be sent back to the instructions page if they choose incorrect responses for Q2, but proceed to the next block if they choose the correct responses. I need help to achieve this.

@m.zubeiru Try this, change the choiceid according to your right/wrong answer. Let me know if it helps

Qualtrics.SurveyEngine.addOnReady(function() {
var qobj = this;
jQuery("#Buttons").hide();
jQuery("#"+this.questionId+" inputtchoiceid=1]").click(function() { qobj.clickNextButton(); });
jQuery("#"+this.questionId+" inputtchoiceid=2]").click(function() { qobj.clickPreviousButton(); });
});

PS: You need to enable back button in survey setting in order for this to work


Leave a Reply