Solved
Select Multi-Answer Drop Down List

I have a Matrix Table, Profile, Drop Down List. Each list has unique categories, but I want a user to have the ability to select multiple answers. Any idea how to do this? I know I can do the Matrix Table, Profile, Multiple Answer, but some answers will have only 3 and others will have up to 8 options to choose from.
I like the Multiple Selection Box option, but I will have multiple categories that I want customers to review and I want them to all be within the same question.
I currently have this javascript to only show Scale Points if the option is not blank.
Qualtrics.SurveyEngine.addOnReady(function()
{
jQuery("#"+this.questionId+" select option:first-child").text("Select one");
jQuery("#"+ this.questionId + " option").each(function () {
if (jQuery(this).text().length < 2) {
jQuery(this).hide();
}
});
});
Best answer by TomG
@gsheppar,
Unfortunately, if you change the selects to multi-selects with JavaScript, Qualtrics won't record the answers correctly.
You can do this using a Text Entry form and select2. You will end up with a comma separated list of choices for each drop down.
Here is a demo using U.S. States as answers (just because I already had a similar script to pick U.S. States in a contact form).
View originalLeave a Reply
Rich Text Editor, editor1
Editor toolbars
Press ALT 0 for help
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.