I have a multirow table with two checkboxes in each row. For each row I need the checkboxes to act like radio buttons, if one is checked the other becomes unchecked.
<tr><td><INPUT TYPE="checkbox" NAME="away" VALUE="1"></td>
<td>New York Jets</td>
<td>New York Giants</td>
<td><INPUT TYPE="checkbox" NAME="home" VALUE="2"></td></tr>
I think I need to add "onclick=" to the checkboxes and a Sub or Function to call but I don't know the syntax for the checkbox or the Sub. Can someone help? Thanks.
<tr><td><INPUT TYPE="checkbox" NAME="away" VALUE="1"></td>
<td>New York Jets</td>
<td>New York Giants</td>
<td><INPUT TYPE="checkbox" NAME="home" VALUE="2"></td></tr>
I think I need to add "onclick=" to the checkboxes and a Sub or Function to call but I don't know the syntax for the checkbox or the Sub. Can someone help? Thanks.