- Posts: 1
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
<script type="text/javascript" charset="utf-8"> $(document).on('ready pjax:scriptcomplete',function(){ // Define this question var thisQuestion = $('#question{QID}'); // Move the last column $('col:nth-last-child(2)', thisQuestion).before($('col:last-child', thisQuestion)); $('col:nth-last-child(3)', thisQuestion).before($('col:nth-last-child(2)', thisQuestion)); $('col:nth-last-child(4)', thisQuestion).before($('col:nth-last-child(3)', thisQuestion)); $('table.subquestion-list tr', thisQuestion).each(function(i) { $('> *:nth-last-child(2)', this).before($('> *:last-child', this)); $('> *:nth-last-child(3)', this).before($('> *:nth-last-child(2)', this)); $('> *:nth-last-child(4)', this).before($('> *:nth-last-child(3)', this)); }); }); </script>
Please Log in to join the conversation.
Please Log in to join the conversation.