On Tue 23 Nov 2004 05:11:24p, DPSwebmaster wrote in
macromedia.dreamweaver:
Quote:
I am working on a form with radio buttons and when I tested it, I
noticed that you can't uncheck the radio button, once it checked and
choose another one. Also, multiple choices are allowed and I only want
one to be chosen. |
For radio buttons to act as a group, they all have to have the same
name, thus:
<table>
<tr>
<td><label><input type="radio" name="RadioGroup" value="Elementary"> Elementary</label>
</td>
</tr>
<tr>
<td><label><input type="radio" name="RadioGroup" value="Middle"> Middle</label>
</td>
</tr>
<tr>
<td><label><input type="radio" name="RadioGroup" value="High"> High</label>
</td>
</tr>
</table>