My 1st question (QID8) is a MC multiple answer question.
I am carrying forward all displayed choices to the next rank order question (QID9) but I want to hide the last 2 choices.
Page 1 / 1
jQuery("#"+this.questionId+" li.Selection").eq(7).hide();
jQuery("#"+this.questionId+" li.Selection").eq(6).hide();
Try this
Deleted my question as I've figured out my answer.
It looks like the .eq(#) component doesn't start as one as the initial value.
I wanted to hide only the first choice, so I had to do .eq(0).
Thanks!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.