Hi. I have a question. I know that in javascript a lot of things are possible, but I can't find a way to do this.
I have a simple form with radio buttons. My question is if there is a way that I can select the radio button by only clicking on the text. Example, selecting the radio option one by clicking with the mouse on the text "Option #1"?????????????
<table border="0" cellpadding="5" cellspacing="0" width="105" >
<tr class="radio_button">
<td valign="top"><span><b>Options:</b></span>
<span><input type="radio" name="options" value="ONE" ID="Radio1" checked >Option #1
<br><input type="radio" name="options" value="TWO" ID="Radio2" checked >Option #2
<br><input type="radio" name="options" value="THREE" ID="Radio3" checked >Option #3
</td></tr></table>
I have a simple form with radio buttons. My question is if there is a way that I can select the radio button by only clicking on the text. Example, selecting the radio option one by clicking with the mouse on the text "Option #1"?????????????
<table border="0" cellpadding="5" cellspacing="0" width="105" >
<tr class="radio_button">
<td valign="top"><span><b>Options:</b></span>
<span><input type="radio" name="options" value="ONE" ID="Radio1" checked >Option #1
<br><input type="radio" name="options" value="TWO" ID="Radio2" checked >Option #2
<br><input type="radio" name="options" value="THREE" ID="Radio3" checked >Option #3
</td></tr></table>