Greeting,
if I have asp.net checkboxlist control :
<asp:CheckBoxList id="list1" runat="server">
<asp:ListItem>One</asp:ListItem>
<asp:ListItem>Two</asp:ListItem>
<asp:ListItem>Three</asp:ListItem>
</asp:CheckBoxList>
how to get the text for second item which is (Two) and has index 1 using jquery when it is check or by passing the index of it?