Disabling question labels | XM Community
Solved

Disabling question labels

  • 26 January 2019
  • 4 replies
  • 301 views

Userlevel 1
Badge +2
Is there a way to disable question label ? I essentially do not want the question label to appear above this slider, instead just want to have the choice text to appear in the matrix table.
!
icon

Best answer by TomG 27 January 2019, 03:59

View original

4 replies

Userlevel 7
Badge +27
Use JS to hide it:
```
jQuery("#"+this.questionId+" .QuestionText").hide();
```
Userlevel 1
Badge +2

Hey!
thansk for your help. how can I adjust it to hide the statement labels in a matrix table?

Userlevel 7
Badge +27

https://community.qualtrics.com/XMcommunity/discussion/comment/43560#Comment_43560jQuery("#"+this.questionId+" .c1").hide();

Userlevel 1
Badge +2

Thank you TomG , this is awesome.

Leave a Reply