Invisible Question | XM Community
Skip to main content

Hi, 

 

I need help making a multi-choice question invisible. I have added a single choice multi-choice question in which the answer is selected when the user hits a Withdraw From Survey button in the footer to withdraw and go straight to the debrief. This all works fine, however I have tried JS code from other posts on this forum and cannot get my multi-choice question to become invisible - the question is just a blank space but the radio button is still visible and highlights blue when the withdraw button is used. 

 

Here is the current working JS Im using in the question. EndNow is the name of my withdraw button:

 

Qualtrics.SurveyEngine.addOnReady(function() {
var that = this;
var endBtn = document.getElementById("EndNow");
function skip() {
that.setChoiceValue(1, true);
that.clickNextButton();
};
endBtn.addEventListener("click", skip);
});

Be the first to reply!

Leave a Reply