- Posts: 11
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
$(document).ready(function(){ var questionid = 6252; //put here your question id $("#question"+questionid).find(".radio").css("float","left").css("margin-right","20px"); $("#question"+questionid).find(".comment").css("clear","both"); });
<script> $(document).ready(function(){ var questionid = 6252; //put here your question id var surveyid = 342642; //put here your survey id var groupid = 205; //put here your group id var new_text = "Bitte um ein Kommentar" // put here your text for the comment field $("#question"+questionid).find(".radio").css("float","left").css("margin-right","20px"); $("#question"+questionid).find(".comment").css("clear","both"); $("#answer"+surveyid+"X"+groupid+"X"+questionid+"comment").css("width","50%").prev().text(new_text).css("float","left").css("margin-right","20px"); }); </script>