how do you access the attribute of the <asp:Checkbox> class in a jQuery selector statement?
eg
<asp:CheckBox runat="server" ID="cbTest" Text="Cb Test" FieldName="1st Test Check Box" class="toggleBox"/>
$(':checkbox').toggleAttr("checked", true, false)
accesses the checkbox and applies a custom function to the checked attribute, but if I want to filter based on a specific class, how do I access / filter based on this?
source share