Grey out a Choice selected by participants in the previous question | XM Community
Skip to main content

Hi,
I have a multiple-choice question that carries all options from the previous multiple-choice question. I want to grey out the option (show but disabled) that the participants have chosen... I am wondering how to realize that?

mint_david Add the disabled attribute to the choice's input element (radio or checkbox). In jQuery if "input" is the jQuery object containing the element:
input.prop("disabled",true);


Leave a Reply