Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
  • Is there any cons of 2nd method? Why http://www.webstandards.org/ decided to use 2nd method
  • Is first method better than first for screen reader users?

First

<label for="name">Name</label>
      <input id="name" />

Second

<label for="n">Name</label>
      <input id="n" />
share|improve this question

2 Answers

up vote 7 down vote accepted

The only 'con' is that the id is non-descriptive. For a page with little content, this wouldn't be a big deal but for a larger page, using a descriptive ID is helpful in development. Too, ID's need to be unique, so the single letter approach would get old at input #26 :p

As a side note, webstandards.org might have run their html through a compression utility that changes their descriptive IDs into single letters to minimize download time. e.g.

Their in-house code is your first example and the compressor spit out your second.

share|improve this answer
so whatever we write inside for="..." and id="..." doesn't matter for screen reader software and user, am I right? – Jitendra Vyas May 24 '10 at 6:43
Correct - as long as the FOR matches the ID, then the screenreader knows that's the label.. whether that be "B" or "Bazinga" ;) – Dan Heberden May 24 '10 at 6:49
should we consider first method as a best practice? – Jitendra Vyas May 24 '10 at 6:51
5  
Descriptive IDs, variables, classnames, all of it - is best practice. Who wants to edit a site full of id="b" class="y" onclick="c(this)" ? heh heh – Dan Heberden May 24 '10 at 6:53
@Dan: It could be the output of some HTML compressor though. – KennyTM May 24 '10 at 7:00
show 1 more comment

I use this:

<label>
    <input>
</label>
share|improve this answer
1  
I believe IE6 isn't supporting implicit labels. It's for the best to do explicit labels until the use of this browsers dies off. – Gert Grenander May 24 '10 at 14:42
@Gert G: is it? Do you really think IE6 users will even notice the difference? :p I don't. I'd bet money they wouldn't. (for the record, what IE6 doesn't support is the label functionality which makes an onclick on the label send focus to what it's labelling) – reisio May 24 '10 at 15:14
@reisio- if we keep input inside label then is for="..." needed in this condition – Jitendra Vyas May 24 '10 at 15:22
@reisio Well, if not for IE... avoid it to have the label work in the screen readers that only support explicit labels or has buggy support for implicit labels. – Gert Grenander May 24 '10 at 18:19
@metal: no, the 'for' attribute would not be needed at all @Gert: screen readers are a ridiculous concept. A TTS engine aimed at barely-parsed HTML would be much smarter, and on average cost several hundreds of dollars less. This simple HTML has been standard since at least before 1998 (w3.org/TR/REC-html40-971218/interact/forms.html#idx-label-1), and all relevant UAs support it. – reisio May 25 '10 at 4:37

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.