Header | XM Community
Skip to main content
Question

Header


Forum|alt.badge.img+1

I have put a header in survey, i want to hide it in the end of the survey block ques - can you help me ?

2 replies

Nam Nguyen
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+29
  • QPN Level 8 ●●●●●●●●
  • 1091 replies
  • August 29, 2023

@Anvi15 Put this JavaScript in the question where you want the header to be hidden

Qualtrics.SurveyEngine.addOnload(function()
{
    jQuery("#Header").hide();
});

Let me know if it work


rgupta15
Level 4 ●●●●
Forum|alt.badge.img+8
  • Level 4 ●●●●
  • 92 replies
  • August 30, 2023

just hide the class you used in the header.

Example:

jQuery(‘.Class’).css(‘display’,’none’)

.hide() may or may not work with some browsers but the above works for most of them! :)