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?
Page 1 / 1
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.