I'd like to pipe answers from previously answered matrix likert questions e.g. from Question A to Question B. I don't think I can do this with Default Choices, so assume I need to use JavaScript to "tick" the options that were selected at the previous question. What's the best way to do this? I have about 5 questions each with about 8 statements x 100+ scale points.
Page 1 / 1
You will need to pipe in the values from QuesA to QuesB in js then based on what was selected use eq() to find the respective choice(s) and then simple prop('checked','true') should do the trick.
Example:
jQuery('tr').eq(0).find('.c4').prop('checked','true')
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.