I wonder what is the difference between the following two code snippets:
<label>Input here : </label>
<input type='text' name='theinput' id='theinput'/>
and
<label for='theinput'>Input here : </label>
<input type='text' name='theinput' id='theinput'/>
I'm sure it does something when you use a special JavaScript library, but apart from that, does it validate the HTML or required for some other reason?
The
for
attribute associates the label with a control element, as defined in the description oflabel
in the HTML 4.01 spec. This implies, among other things, that when thelabel
element receives focus (e.g. by being clicked on), it passes the focus on to its associated control. The association between a label and a control may also be used by speech-based user agents, which may give the user a way to ask what the associated label is, when dealing with a control. (The association may not be as obvious as in visual rendering.)In the first example in the question (without the
for
), the use oflabel
markup has no logical or functional implication – it’s useless, unless you do something with it in CSS or JavaScript.HTML specifications do not make it mandatory to associate labels with controls, but Web Content Accessibility Guidelines (WCAG) 2.0 do. This is described in the technical document H44: Using label elements to associate text labels with form controls, which also explains that the implicit association (by nesting e.g.
input
insidelabel
) is not as widely supported as the explicit association viafor
andid
attributes,The
<label>
tag allows you to click on the label, and it will be treated like clicking on the associated input element. There are two ways to create this association:First, you can wrap the label element around the input element:
The other way is to use the
for
attribute, giving it the ID of the associated input:This is especially useful for use with checkboxes and buttons, since it means you can check the box by clicking on the associated text instead of having to hit the box itself.
Read more about this element in MDN.
The for attribute of the
<label>
tag should be equal to the id attribute of the related element to bind them together.In a nutshell what it does is refer to the
id
of the input, that's all: