I put a couple of radio button in same group in following way:
<asp:RadioButton ID="ID11" Text="Text1" GroupName="G1" runat="server" />
<asp:RadioButton ID="ID12" Text="Text2" GroupName="G1" runat="server" />
<asp:RadioButton ID="ID13" Text="Text3" GroupName="G1" runat="server" />
IDs for each radio button generated dynamically. then I want to access those radio button in javascript. How to go through those radio buttons without use each ID?