Remove the "Items" label from Pick, Group and Rank Question. | XM Community
Skip to main content
Hi,



Is there a custom code to remove or edit the "Items" header of in the Pick, Group and Rank Question.



This can be seen below.



!



Thanks you!
```

jQuery("#"+this.questionId+" div.Items h2").hide();

```
> @TomG said:

> ```

> jQuery("#"+this.questionId+" div.Items h2").hide();

> ```



Hi Tom, thank you for the response.

Where exactly do I add this?
Add to the question's addOnload JavaScript function.

Bumping this question.
TomG How do you edit the text for "Items"?


Trev - Try:
jQuery("#"+this.questionId+" div.Items h2").html("New text here");


ARG, thank you!!! I was trying to use .innerHTML = "text".


.innerHTML works with html elements, not jQuery objects.


TomG Thanks! Is there a way to bold the "New Text Here" change?


https://community.qualtrics.com/XMcommunity/discussion/comment/42881#Comment_42881Just add a bold tag to the text:
.html("New Text Here")


TomG Thanks!


Leave a Reply