I have 3 tables on a page. Each of them contain two table rows.
The first holds a RadioButton. The second is set to display: none. I need to second to display when the RadioButton in that particular table was selected.
My HTML:
<table class="tableClass" style="width: 98%">
<tr>
<td>
<input type="radio" id="rbResource" onclick="radio_Click()" class="radioButton" runat="server" />
</td>
</tr>
<tr class="displaySelection" style="display: none">
<td>
<span>Test</span>
</td>
</tr>
</table>
I'm not sure how to form my jquery int the radio_Click() function to get what I'm looking for. Everything I've tried so far, displays all three of each table regardless of which Radiobutton was selected.
Thanks