Selective Back Button | XM Community
Skip to main content

I am creating a survey where participants will need to make a decision after being presented a randomly assigned scenario. Participants may want to refer back to the scenario before making their decision. For this reason, I would like to give them a button to the scenario OR a selective back button only for this purpose (i.e: I do not want to enable the back button for other questions). Any idea how to make this work? 

@hollygwu Enable Back Button for your survey because it’s how the feature work. You can hide the button for all other questions by putting this JavaScript in it 

Qualtrics.SurveyEngine.addOnReady(function() {
var prevButton = document.getElementById("PreviousButton");
if (prevButton) {
prevButton.style.display = "none";
}
});

 


Leave a Reply