

hi NiC thanks for your suggestion. However, is it possible to apply to the scenario of just hiding N/A option in multiple statements?
For my case, I have 7 statements in slider question but I just want N/A option for one of my statements. I have tried to apply this javascript to hide the other 6 statements. Let's say, I just want to show "N/A" option for my 5th statement, so I have added the following javascript by hiding the NA option in statement 1-4 and 6-7.
jQuery("div.q-slider").children().children().eq(1).children("div.statement-container").children("div.n-a-container").hide();
jQuery("div.q-slider").children().children().eq(2).children("div.statement-container").children("div.n-a-container").hide();
jQuery("div.q-slider").children().children().eq(3).children("div.statement-container").children("div.n-a-container").hide();
jQuery("div.q-slider").children().children().eq(4).children("div.statement-container").children("div.n-a-container").hide();
jQuery("div.q-slider").children().children().eq(6).children("div.statement-container").children("div.n-a-container").hide();
jQuery("div.q-slider").children().children().eq(7).children("div.statement-container").children("div.n-a-container").hide();
However, it does not work properly. May I know how to solve this? Thanks so much!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.