- Posts: 13
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
<script type="text/javascript" data-author="Tony Partner"> $(document).on('ready pjax:scriptcomplete',function(){ var thisQuestion = $('#question{QID}'); var answersList = $('.ls-answers.answers-list > ul:eq(0)', thisQuestion) // Move the last row $(answersList).prepend($('li:last', answersList)); // Move the label $('li:first', answersList).append($('li:first .radio-item', answersList)); // Hide the radio $('li:first .radio-item', answersList).removeClass('radio-item'); $('li:first input:radio', answersList).css({ 'position': 'absolute', 'left': '-9999em' }); }); </script>
Please Log in to join the conversation.
Please Log in to join the conversation.