I’m looking for a way to force a response to the top-level question in a drill down, without forcing a response to other levels in the drill down. Any suggestions?
Solved
How to require response to top level question only in drill down

Best answer by Tom_1842
And for a JavaScript option, adding the below to the OnReady section of the question’s JavaScript will disable the next button and only enable it once a selection is made for the first drilldown:
this.disableNextButton();
var that = this;
jQuery("#"+this.questionId+" select").eq(0).on('change', function() {
that.enableNextButton();
});
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.