Side-by-Side Image and Question | XM Community
Skip to main content

I am new to Qualtrics but looking to create a survey where the image is on the right side of the survey and four questions are displayed to the left of that image. Does anyone have any kind of idea of how to accomplish this?

Put the image in its own Text/Graphic question, then use JavaScript to rearrange the questions on the page.


carolinefilan
If you are looking to it for 4 options of a question you can create a multiple choice question and include the below HTML in source of question and Javascript in the question. You can change the src value to your image URL.
HTML:








 



JS:
Qualtrics.SurveyEngine.addOnReady(function()
{
/*Place your JavaScript here to run when the page is fully displayed*/
var qid = this.questionId;
jQuery("td#Choice").html(jQuery('#'+qid).find('.ChoiceStructure'));


});


Question Preview:
image.pngSurvey Preview:
image.pngHope it helps!


Leave a Reply