- Posts: 10227
- Thank you received: 3642
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" charset="utf-8"> $(document).ready(function() { // Identify this question var thisQuestion = $('#question'+{QID}+''); // Add some column-specific classes $('table.subquestions-list tr', thisQuestion).each(function(i){ $('> *', this).each(function(i){ $(this).addClass('column-'+(i+1)); }); }); // Hide all column-1 elements $('.column-1', thisQuestion).hide(); $('table.subquestions-list col', thisQuestion).css('width', 'auto'); }); </script>
Please Log in to join the conversation.
<style type="text/css" data-author="Tony Partner"> #question{QID} .subquestion-list col:last-child, #question{QID} .subquestion-list th:last-child, #question{QID} .subquestion-list td:last-child { display: none !important; } #question{QID} .subquestion-list col { width: auto !important; } </style>
Please Log in to join the conversation.
Please Log in to join the conversation.