I have carried forward a list of randomized statements which include "none of the above" to a following question. As the respondent is rating the carried forward statements on a scale, it doesn't make sense to include "none of the above". I can't figure out how to remove or hide it.
!
!
Page 1 / 1
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();
});
```
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();
jQuery("#"+this.QID101+"tr:last").hide();
And do I paste it under ".addONload(function()"?
Obviously I'm very new to this....
Obviously I'm very new to this....
> @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.
> 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.
Awesome! Thank you!!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.