Forum Moderators: open
When a radio button has been clicked, I want to be able to color the whole column that has been selected.
This is only some of the code, which will hopefully help you understand about the radio buttons.
<tr>
<td colspan="2" align="center">
Please select the cover you require
</td>
<td align="center">
<INPUT type="radio" ID="plan1" NAME="Plan" VALUE="Pick & Mix" onclick="onclick2(this, 1, 2, 1);" >
</td>
<td align="center">
<INPUT type="radio" ID="plan2" NAME="Plan" VALUE="Horse Value" onclick="onclick2(this, 3, 4, 2);">
</td>
<td align="center">
<INPUT type="radio" ID="plan3" NAME="Plan" VALUE="Horse Cover" onclick="onclick2(this, 5, 6, 3);">
</td>
<td align="center">
<INPUT type="radio" ID="plan4" NAME="Plan" VALUE="HiXcess" onclick="onclick2(this, 7, 8, 4);">
</td>
</tr>
Thanks