View Full Version : email form "radio buttons" help?


52girl
02-21-2004, 10:31 AM
this is driving me mad!
can anyone help me here?

if you go to this page, http://www.52grrl.net/formmailer/form.html
you will see an email form. the only issue im having with it, is the radio buttons.
it stays on "positive" all the time, but if you click on "neutral" or "negative" it wont unclick any of the options...
try it...

HOW do i fix this so it only stay on ONE option when clicked?

im sure its just something simple, but i cant work it out.
help is much appreciated :)

Sheila
02-21-2004, 10:55 AM
try this:

<b>04.</B> Feedback Type:<br>
<input type="radio" name="positive" value="yes"><font color=#00ff00>Positive</B></font><BR>
<input type="radio" name="neutral" value="neutral"><b><font color=#ffd700>Neutral</B></font><BR>
<input type="radio" name="negative" value="negative"><b><font color=red>Negative</B></font><BR>

pb&j
02-21-2004, 12:28 PM
with radio buttons, all of the NAME values must be the same as each other in order to affect each other.

<b>04.</B> Feedback Type:<br>
<input type="radio" name="namehere" value="yes"><font color=#00ff00>Positive</B></font><BR>
<input type="radio" name="namehere" value="neutral"><b><font color=#ffd700>Neutral</B></font><BR>
<input type="radio" name="namehere" value="negative"><b><font color=red>Negative</B></font><BR>

keep the values different so you can see the results in the end.

52girl
02-21-2004, 10:56 PM
thanks SO much!
i got it now...

much appreciated.