Solved
deleted
deleted
Best answer by TomG
> @mleipzig said:
> Unfortunately, it appears that any custom coding prevents you from even being able to answer these questions. Do you have any other suggestions? I'm considering mouse tracking
I think you want to use JavaScript and not CSS (since bots may be smart enough to determine is something is hidden via CSS), and you want to hide the entire question (and the separator before it). So use the JavaScript below for any question you don't want real respondents to answer, but you want bots to answer.
```
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId).prev('.Separator').hide();
jQuery("#"+this.questionId).hide();
});
```
Make sure you don't force response on any of these questions. Ideally, you'll put them in their own block. Then in the survey flow immediately following the block, terminate (and probably screen out) any respondents who answered the questions.
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.