- Posts: 8
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ // Column 2, remove all options greater than 5 $('#question{QID} select[id$="_X002"] option').filter(function( index ) { return $(this).val() > 5; }).remove(); // Column 3, remove all options greater than 8 $('#question{QID} select[id$="_X003"] option').filter(function( index ) { return $(this).val() > 8; }).remove(); }); </script>