- Posts: 24
- 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.
<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.
Please Log in to join the conversation.
<style type="text/css" data-author="Tony Partner"> @media (min-width:768px){ #question{QID} .other-text-item input { width: 600px; } } </style>
Please Log in to join the conversation.