Solved
How to hide radio button element in matrix question
Hello!
I am struggling with hiding radio button element in Qualtrics. I have a transposed matrix question, and I am trying to hide some specific radio buttons.
I was trying to use below codes:
<code>$('QR~QID392~5~14').hide(); </code>
<code>$('QR~QID392~5~14').style.visibility = 'hidden';</code>
However none of them is working. Would be grateful for any advice!
Best answer by TomG
Hide the contents of a matrix cell:
```
var cell = "5~14";
jQuery(("#QR~"+this.questionId+"~"+cell).replace(/~/g, "\\\\~")).closest("td").find("*").hide();
```
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
