vote up 3 vote down star
1

I always try to do the following:

<label><input type="checkbox" /> Some text</label>

or

<label for="idOfField"><input type="checkbox" id="idOfField" /> Some text</label>

My question is related to the label tag, specifically on a checkbox.

Most websites (I would say >40%) don't use the <label> tag.

Is there a reason for this? Is there a problem in a browser or some other issue?

Note: Incase people don't know about the <label> tag, it has a number of advantages:

  • checkboxes & radios: you can click on the text as well as the checkbox to check the checkbox (as well as focus I believe): Blah blah blah
  • other inputs: if you click the text, it will focus the input (textarea, text, file) (this functionality isn't as useful as checkboxes & radios)

Note 2: Some people have mentioned that example #2 is more correct than #1 (above), but according to the documentation here, either is correct

flag

70% accept rate
What's the advantage? – Andrew Medico Dec 30 '08 at 2:13
It's for accessibility and Eneki's answer (with the for attribute) is the more correct form. – cletus Dec 30 '08 at 2:20

8 Answers

vote up 10 vote down check

I think it's probably more a factor that people don't know about the <label> tag. I didn't, until this post.

link|flag
It's a shame this tag isn't more popular. I've even seen broken javascript trying to emulate its behavior :/ – porneL Jan 11 at 17:33
I evangelize the merits of the <label> tag. – lupefiasco Feb 2 at 20:31
vote up 5 vote down

There is no downside to using <label> that I know of. I 've used it a lot in the past few years.

There are actually 3 ways you can set a label, the first two correspond with the ones you gave in your question:

<label for="xa">XA: <input type="text" id="xa" /></label><br />
<label for="xb">XB:</label> <input type="text" id="xb" /><br />
<label>XC: <input type="text" id="xc" /></label>

All 3 of the above work in FF3 and IE7. I remember that for some reason I mentally marked the last two as "to be avoided, only partially work" though. Therefore I 'd bet good money that only the first one works in IE6.

To clarify: the "best" way to do it is my example #1, your example #2.

link|flag
All these examples work in IE6. I'd say, the last two work 100%, the first one tries to be explicit twice, say 200% ;) – taoufik Nov 18 at 11:21
vote up 4 vote down

I agree that label is often an unknown tag. I use it in the form

<label for="chk1">Some text</label><input id="chk1" type="checkbox"/>

The for attribute let the user click on the label also to select the checkbox with the corresponding id (not name) and not being annidate I can better control the layout with CSS.

I will try your solution, though

link|flag
As far as I've experienced and in the docs, you can use it either way. The for attribute is not needed if the field is within the <label> – Darryl Hein Dec 30 '08 at 2:21
vote up 3 vote down

The developer working on the site didn't know the <label> tag existed.

link|flag
What do you mean? The only checkbox I see is the "community wiki" which has a label on it? – Darryl Hein Dec 30 '08 at 2:18
@Darryl, not sure what you're saying. I meant "developer" and "site" in general; not SO. I don't see how "community wiki" has anything to do with anything. – BQ Dec 30 '08 at 2:38
@BQ, my apologies, I thought you meant SO. – Darryl Hein Dec 30 '08 at 3:06
vote up 3 vote down

Some older browsers don't interpret the for attribute, and instead require the form element to be nested within the label tag.

link|flag
Would you care to back up with a link? (I'd like to know more) – Adam Asham Dec 30 '08 at 2:45
Which ones? I know only that IE is broken, it the opposite way. It only supports for. – porneL Jan 11 at 17:32
vote up 2 vote down

Most web sites were made by people who only do what it takes to get the site to work like they think it should. Process flow is:

  1. Take a stab at it.
  2. Load it in browser, and see what's wrong.
  3. Search google for the fixes.
  4. Repeat.

Since most of these people never try to focus any inputs without using the mouse, the problem never becomes evident.

link|flag
vote up 2 vote down

The advantages are obvious but I don't think most know about it because label seems to convey nothing concrete. You can obviously see the advantage of using a strong tag because it makes the text look bold but label tag? You wouldn't notice anything different.

link|flag
vote up 1 vote down

Because it's an underhyped tag that should get more attention. While you're at it (improving accessibility), don't forget the tabindex property.

link|flag

Your Answer

Get an OpenID
or

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