option/radio button - how to uncheck

  • Thread starter Thread starter Adela D
  • Start date Start date
A

Adela D

I chose radio buttons for a form, because I thought they would limit the user
selection to one choice. However, I just discovered that uders cannot
uncheck a button if they made a mistake. Can I fix this? The problem is in
section C on the following page:
http://www.njsc-online.com/pp08.htm

Thank you.
 
Put the grade levels in a drop down select with "allow multiple selection" set to no.

<select name="Grade Level" size="1">
<option value="Please Pick One">Select One</option>
<option value="K-4">K-4option>
<option value="5-8">5-8option>
<option value="9-12">9-12option>
<option value="K-8">K-8option>
<option value="K-12">K-12option>
</select></td>


--

Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm
 
Thank you. I will do this. I just want to double-check for future work...
This not possible to do with radio buttons? I ask only because the FP
documentation states that this is what radio buttons are used for. Thank you
in advance for anohter reply.
 
I have another related question. When I change the confirmation page, which
part(s) will I include, the name or each of the option values?
 
Back
Top