Hey, I am trying to find a custom code that would allow me to hide/ exclude a particular block from response summary? Can you help me with a custom JS code?
Solved
How can I hide a block in response summary?
Best answer by ahmedA
Updating this response, as it appears that something has changed at the End of Survey page:
Add this to every question you want to hide from the response summary.
Qualtrics.SurveyEngine.addOnReady(function () {
const quest = this;
if (document.querySelector("#EndOfSurvey")) {
document.querySelector("#" + quest.questionId).style.display = "none";
}
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
