- Posts: 22
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
To remove the radios in the 4th answer column and the header label, add something like this to the question source:If you know how to
- add blank column or
- remove radio buttons
I'll be gratefull for direction.
<script type="text/javascript" data-author="Tony Partner"> $(document).on('ready pjax:scriptcomplete',function(){ $('#question{QID} tr.ls-heading th:nth-child(5)').text(''); $('#question{QID} tr[id^="javatbd"] .answer-item:nth-child(5) *').remove(); }); </script>
<style type="text/css" data-author="Tony Partner"> #question{QID} col:nth-child(5) { width: 2% !important; } #question{QID} tr.ls-heading th:nth-child(5), #question{QID} tr[id^="javatbd"] .answer-item:nth-child(5) { padding: 0 !important; } </style>