- Posts: 10216
- Thank you received: 3635
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.
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.
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(){ // Identify this question var thisQuestion = $('#question{QID}'); var filterQuestion = $(thisQuestion).nextAll('.multiple-opt:eq(0)'); // Hide the filter question $(filterQuestion).hide(); // Move the checkbox rows $('li.answer-item.numeric-item', thisQuestion).each(function(i) { $(this).after($('li.answer-item:eq(0)', filterQuestion)); }); // Some clean-up styles $('li.numeric-item', thisQuestion).css({ 'margin-bottom': 0, 'min-height': 0 }) $('li.checkbox-item *', thisQuestion).removeClass('col-auto'); $('li.checkbox-item', thisQuestion).removeClass('mb-1').css({ 'margin-bottom': '20px', 'text-align': 'center' }) }); </script>
Please Log in to join the conversation.