Since "None of the above" is exclusive, use question display logic to only show the follow-up question if "None of the above" is not selected.
If you want to show the questions whether they select "None of above" or not, you can hide it with JS (I'm assuming that is a matrix question in your picture):
```
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" tr:last").hide();
});
```
Do I need to replace anything in JS you included? Other than questionId?
jQuery("#"+this.QID101+"tr:last").hide();
>
@elassit206 said:
> Do I need to replace anything in JS you included? Other than questionId?
>
> jQuery("#"+this.QID101+"tr:last").hide();
Don't change anything, including this.questionId. this.questionId is a variable that contains the current question id (e.g., QID101).
>
@elassit206 said:
> And do I paste it under ".addONload(function()"?
>
> Obviously I'm very new to this....
The cost I posted includes addOnload. Copy what I posted and replace everything that is there.