Hide 2 choices when using carry forward | XM Community
Question

Hide 2 choices when using carry forward

  • 2 April 2020
  • 2 replies
  • 30 views

My 1st question (QID8) is a MC multiple answer question.
image.pngI am carrying forward all displayed choices to the next rank order question (QID9) but I want to hide the last 2 choices.
image.png


2 replies

   jQuery("#"+this.questionId+" li.Selection").eq(7).hide();
   jQuery("#"+this.questionId+" li.Selection").eq(6).hide();

Try this

Badge +1

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