I have looked and can't find a simple answer for my question.
I click on one of the TR
then click on the other TR
and it works fine but after the two have been clicked it no longer recognized the clicking on a row.
Any help?
Here is the HTML:
<table>
<th>1</th>
<th>2</th>
<tr>
<td>Yes
<input type='radio' name='test' value='yes' />
</td>
</tr>
<tr>
<td>No
<input type='radio' name='test' value='no' />
</td>
</tr>
</table>
and here is the jquery
$(function () {
$('table tr').click(function () {
$(this).find('input:radio').attr('checked', 'checked');
});
});