- Posts: 3
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ // Identify this question var q1ID = '{QID}'; var q1 = $('#question'+q1ID+''); // Hide the "Other" radio button and label $('.other-item input.radio, .other-item .answertext', q1).hide(); // Move the "Other" row to the top $('.radio-list', q1).prepend($('.other-item', q1)); }); </script>
// Move the "Other" row to the top $('.radio-list', q1).prepend($('.other-item', q1)); });
// Insert the "Other" row after the second row $('li.answer-item:eq(1)', q1).after($('.other-item', q1));