- Posts: 73
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
...to only be able to selection answers 1 & 4 because answers 2&3 aren't applicable.
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ // Remove contents of ninth row, second and third cells $('#question{QID} tr.answers-list:eq(8) td.answer-item:eq(1) *').remove(); $('#question{QID} tr.answers-list:eq(8) td.answer-item:eq(2) *').remove(); // Remove contents of tenth row, second and third cells $('#question{QID} tr.answers-list:eq(9) td.answer-item:eq(1) *').remove(); $('#question{QID}1 tr.answers-list:eq(9) td.answer-item:eq(2) *').remove(); }); </script>