Solved
How can I program a hidden / backgroud question?
I have a question that based on a previous question (aided awareness) random and evenly selects two known brands and makes these default selections. I would like this to happen in the background without showing the question to the respondents. I was thinking about adding Javascript to autoforward/advance but this does not seem to work. Any other way to make such questions with default choices in the background?
Many thanks!
Best answer by TomG
This will hide the question and go to the next page:
```
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId).hide();
this.clickNextButton();
});
```
If you don't want them to see the question flash by, add padding to the top of the question text to push it off the bottom of the page.
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.