I have a Repeater (ASP.Net).
<asp:Repeater ID="rep" runat="server">
<ItemTemplate>
<asp:TextBox runat="server" ID="txt"></asp:TextBox>
<asp:CheckBox runat="server" ID="cb" />
</ItemTemplate>
I would like to write Text in the text-box if I click on the checkbox, using jQuery. Is this possible and how.