Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a form with a lot of groups of radios. Each radio has a unique id and has the same name as the others in its group. The page validates as XHTML transitional.

Tested in IE6 & 7, Opera, Safari, and Chrome it works exactly as you would think it would from either mouse or keyboard input.

In FireFox it goes crazy. A single click on any radio in a group sets the first radio in the group checked. A double click on a radio usually selects it. Anyone seen this before?

Sample group looks like this:

<input type="radio" name="upAndDown_1" id="upAndDown_11" value="Y"  /> Y <br />
<input type="radio" name="upAndDown_1" id="upAndDown_12" value="N"  checked="checked" /> N<br />
<input type="radio" name="upAndDown_1" id="upAndDown_13" value="NA"  /> NA

The phonmomenon can be tested here: http://www.nolaflash.com/stackoverflow/firefox_and_radios.html

Any advice appreciated.

share|improve this question

2 Answers

up vote 7 down vote accepted

Doh! My designer had a single tag wrapping each group of radios. Eliminating the label tag fixes FireFox's weirdness.

share|improve this answer
1  
Yes, an input inside a label is considered as associating the label with the input, as if a for="..." had been used to associate them. This is part of the HTML standard, though not supported by IE. – bobince Oct 24 '09 at 23:06
1  
The behavior happens when you have the same id for the radios if you assign the same name and different id's you wont have this effect. – Michael D. Irizarry Mar 28 '12 at 17:38

It's indeed the surrounding <label> tag that causes the Firefox issue (although it is valid html). This should do the trick:

<input type="radio" name="upAndDown_2" id="upAndDown_21" value="Y"/><label for="upAndDown_21">Y</label><br/>
<input type="radio" name="upAndDown_2" id="upAndDown_22" value="N"/><label for="upAndDown_22">N</label><br/>
<input type="radio" name="upAndDown_2" id="upAndDown_23" value="NA" checked="checked"/><label for="upAndDown_22">NA</label>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.