Hide 2 choices when using carry forward | XM Community
Skip to main content
Question

Hide 2 choices when using carry forward

  • April 1, 2020
  • 2 replies
  • 55 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

Aymster
  • April 2, 2020

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

Try this


Forum|alt.badge.img+1
  • July 20, 2020

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!