Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

yet another deselect a radio button 1

Status
Not open for further replies.

nk9100

Technical User
May 13, 2005
67
GB
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?

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 &amp; 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
 
Thanks

Life is a journey that always ends up in the same place
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top