Consider this scenario:
<asp:CheckBoxList>
in a master page.- the goal is to have all checkboxes in this list to be checked on page load.
- there are many checkbox lists on the page.
The markup:
<asp:CheckBoxList runat="server" ID="chkSubscriptionType"
DataSourceID="myDS"
CssClass="boxes" DataTextField="Name" DataValueField="Name" />
renders to:
<input id="ctl00_cphContent_chkSubscriptionType_0" type="checkbox" name="ctl00$cphContent$chkSubscriptionType$0" />
Question: how can you use jQuery to check all boxes in this asp:CheckBoxList
on document.ready
? I see samples everywhere, but naming convention used by the master page throws off the samples in other places.