Question Numbers are Hiding | XM Community
Skip to main content

Hello XM Community! I am finishing up a project and used a small line of Java code to hide figures/numbers on my text/graphic question I am using for an “information page”. Each info page starts each block and outlines what that block will contain. However, when I put in my Java code under the:

Qualtrics.SurveyEngine.addOnload(function()
{
    jQuery('.QuestionText').find('label').css("display","none")

});

 

The numbers for the following questions (until the next page) do not appear. I have a period in the place of a question number on my text/graphic question. Any help would be great! 

 

---BH

@BradleyHoush Your code hide the question number for the whole page. Try this one, it will hide only that question number.

Qualtrics.SurveyEngine.addOnload(function()
{
jQuery("#"+this.questionId+" .QuestionText").find('label').css("display","none")

});

Hope this helps


@dxconnamnguyen that did the trick. Thanks so much! 


Leave a Reply