Hi All
i want to develop a code such that when i click on the text next to the radio button the radio button should be selected and even if the button is clicked
how can i achieve this
any help would b appriciated
thanks in advance
<html>
<head>
<script language="Javascript">
</script>
</head>
<body>
<table>
<tr>
<td width="4%" valign="top" align="left"><font face="Times New Roman" size="3"
color="#000000">1.</font></td>
<td width="30%" valign="top" align="left" nowrap><font face="Times New Roman" size="3"
color="#000000">Select an option</font></td>
<td width="73%" valign="top" align="left">
<input type="radio" name="grp" value="Yes" tabindex="1">Yes
<input type="radio" name="grp" value="No" tabindex="1">No</td>
</tr>
</table>
</body>
</html>