- Posts: 450
- Thank you received: 25
Ask the community, share ideas, and connect with other LimeSurvey users!
$(document).on("click","thead .checkall", function(){ indexcheck=$(this).closest("thead tr").index(this).index(); $(this).closest('table.question').find('tbody tr').each(function(){ $(this).eq(indexcheck).find('input:radio').click(); }); });
<script> $(document).on("click","thead .checkall", function(e){ indexcheck=$(this).closest("thead tr").find(".checkall").index(this); $(this).closest('table.question').find('tbody tr').each(function(){ $(this).find('td').eq(indexcheck).click(); }); $("thead .checkall").removeClass("checked"); $(this).addClass('checked'); }); </script>