I have the following code, which I want the user to be able to unselect the radio, or click on a text link to 'Clear all', what is the best way of doing this please?
Life is a journey that always ends up in the same place
Code:
<table border="0" cellspacing="1" width="97%" id="table5">
<tr>
<td width="9%" align="center"><font face="Arial">
<input type="radio" value="Education" name="educationrecruitmentdifficulties"></font></td>
<td width="44%"><font face="Arial Narrow">Education</font></td>
<td width="9%" align="center"><font face="Arial">
<input type="radio" value="maths" name="mathsrecruitmentdifficulties"></font></td>
<td width="38%"><font face="Arial Narrow">Mathematics</font></td>
</tr>
<tr>
<td width="9%" height="63" align="center"><font face="Arial">
<input type="radio" value="Computing & ICT" name="computingrecruitmentdifficulties"></font></td>
<td width="44%" height="63"><font face="Arial Narrow">Computing, information
technology and information systems</font></td>
<td width="9%" height="63" align="center"><font face="Arial">
<input type="radio" value="engineering" name="engineeringrecruitmentdifficulties"></font></td>
<td width="38%" height="63"><span lang="EN-GB" style="mso-fareast-font-family: Times New Roman"><font face="Arial Narrow">
Engineering (includes electrical/electronic, mechanical and civil)</font></span></td>
</tr>
<tr>
<td width="9%" align="center"><font face="Arial">
<input type="radio" value="Business" name="Businessrecruitmentdifficulties"></font></td>
<td width="44%"><font face="Arial Narrow">Business (includes business
and management accountancy and finance, law, economics)</font></td>
<td width="9%" align="center"><font face="Arial">
<input type="radio" value="medical" name="medicalrecruitmentdifficulties"></font></td>
<td width="38%"><span lang="EN-GB" style="mso-fareast-font-family: Times New Roman"><font face="Arial Narrow">
Clinical medicine and clinical dentistry</font></span></td>
</tr>
<tr>
<td width="9%" align="center"><font face="Arial">
<input type="radio" value="other" name="otherrecruitmentdifficulties"></font></td>
<td width="91%" colspan="3"><font face="Arial Narrow">Other - please
state: <font size="3" face="Arial">
<input type="text" name="othertextboxS2Q1" size="33" value="<%= rsCheckUser("othertextboxS2Q1")%>"></font></font></td>
</tr>
</table>
Life is a journey that always ends up in the same place