Please help us help you and fill where relevant:
Your LimeSurvey version: 3.27.33
Own server or LimeSurvey hosting: inria
Survey theme/template: inria
==================
By default, the answer is at the bottom of the question.
Is there a way to move the answer options of an array to the right of the question(an image)?
How can I access to the whole answer options of an array question? What is its identifier?
I attached a diagram.
My current code is as follows. But it doesn't work.
<div>
<div id="image" style="width:40%; float:left;">
<p style="text-align: center; background-color:white;"><img alt="" src="test-image.png" style="height: 331px; width: 500px;" /></p>
</div>
<div id="question" style="width:50%; float:right; background-color:yellow">
<p><span style="color:#000000;">To what extent do you agree or disagree with the following statement:</span></p>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
//alert("Test!");
$("#answer{SurveyID}X{QuestionGroupID}X{QuestionID}").appendTo($("#question"));
});
</script>
Thank you.