Set of a multiple choice question with text both before and after the option choices | XM Community
Skip to main content

I need to creat a multiple choice question where I have text both before the 4 choices are presented and after them, below.  It should appear as it does in the screenshot but without using an additional Text / Graphic box. I want all text to be in the same box, else, the text after the 4 choices will be too far away and this could create confusion.

 

I know Qualtrics does not accomodate for this setting so I was wondering if anybody could help me with a custom code to do that. Thanks! :)

 

You can add your question text like this:

Question Text
<div class="bottomText">This text goes on the bottom</div>

Then use this JS:

Qualtrics.SurveyEngine.addOnload(function() {
var q = jQuery(this.getQuestionContainer());
q.find(".QuestionBody, .question-content").append(q.find(".bottomText"));
});

Note: If you are using New Experience, you need to load jQuery in the survey header or footer.


Leave a Reply