How can I check all checkboxes using the "Select All" checkbox from below please?
<ul class="list-group">
<li class="list-group-item" style="font-weight: bold;"><input type="checkbox" name="select_all" id="select_all"> Select All</li>
<%For i = 0 To UBOund(PackMmbrs, 2) - 1%>
<li class="list-group-item">
<input type="checkbox" name="select_<%=PackMmbrs(0, i)%>" id="select_<%=PackMmbrs(0, i)%>">
<%=PackMmbrs(3, i)%>, <%=PackMmbrs(2, i)%>(<%=GetTeamName(PackMmbrs(4, i))%>)
</li>
<%Next%>
</ul>
Open in new window
Thank you!