How do I make a checkbox toggle from clicking on the text label as well? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T15:17:05Zhttp://stackoverflow.com/feeds/question/2123http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well3How do I make a checkbox toggle from clicking on the text label as well?Ronnie2008-08-05T11:51:16Z2009-02-13T01:11:36Z
<P>Checkboxes in html forms don't have implicit labels with them. Adding an explicit label (some text) next to it doesn't toggle the checkbox.</P>
http://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well/2132#2132-1Answer by Ronnie for How do I make a checkbox toggle from clicking on the text label as well?Ronnie2008-08-05T11:59:13Z2008-08-05T11:59:13Z<P>Somebody pipped me to the post - I was answering my own question and about to ask a second one :-(</P>
<P>What about when I want to wrap the whole thing in a box:</P><div onClick="cbsel('item1')" style="border: solid 1 black; width: 30em"><input id=item1 type="checkbox" name="cb" value="item1"></div><BR>
<P>Then it looks great - anywhere in the box toggles the checkbox EXCEPT actually clicking on the textbox - the textbox must be doing its own toggle and then the div onclick fires!</P>http://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well/2133#213318Answer by GateKiller for How do I make a checkbox toggle from clicking on the text label as well?GateKiller2008-08-05T12:00:03Z2008-08-05T12:09:18Z<p>If you correctly markup your HTML code, there is no need for javascript. The following code will allow the user to click on the label text to tick the checkbox.</p>
<pre><code><label for="surname">Surname</label><br><input type="checkbox" name="surname" id="surname" /><br></code></pre>
<p>The <em>for</em> attribute on the label element links to the <em>id</em> attribute on the input element and the browser does the rest.</p>
<p>This has been testing to work in:</p>
<ul>
<li>IE6</li>
<li>IE7</li>
<li>Firefox</li>
</ul>http://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well/2143#21430Answer by Ronnie for How do I make a checkbox toggle from clicking on the text label as well?Ronnie2008-08-05T12:06:20Z2008-08-05T12:06:20Z<P>The <CODE><label></CODE> answer is definatley the right way to do that - but how can I make clicking anywhere in my box around the label AND checkbox work?</P>http://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well/2177#21770Answer by Michiel de Mare for How do I make a checkbox toggle from clicking on the text label as well?Michiel de Mare2008-08-05T12:25:16Z2008-08-05T12:25:16Z<p>You can wrap your checkbox in the label:</p>
<pre><code><label style="display: block; padding: 50px 0 0 50px; background-color: pink; width: 80px; height: 80px"><br> <input type="checkbox" name="surname"><br></label><br></code></pre>http://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well/2180#21802Answer by GateKiller for How do I make a checkbox toggle from clicking on the text label as well?GateKiller2008-08-05T12:28:32Z2008-08-05T12:28:32Z<p>Ronnie,</p>
<p>If you wanted to enclose the label text and checkbox inside a wrapper element, you could do the following:</p>
<pre><code><label for="surname"><br> Surname<br> <input type="checkbox" name="surname" id="surname" /><br></label><br></code></pre>http://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well/2184#21840Answer by Ronnie for How do I make a checkbox toggle from clicking on the text label as well?Ronnie2008-08-05T12:34:27Z2008-08-05T12:34:27Z<P>Wrapping with the label still doesn't allow clicking 'anywhere in the box' - still just on the text! This does the job for me:</P><PRE><CODE><div onclick="dob.checked=!dob.checked" class="checkbox"><input onclick="checked=!checked" id="dob" type="checkbox"/>Date of birth entry must be completed</div>
</CODE></PRE>
<P>but unfortunately has lots of javascript that is effectively toggling twice.</P>http://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well/2223#22235Answer by Mat for How do I make a checkbox toggle from clicking on the text label as well?Mat2008-08-05T12:52:50Z2008-08-05T12:52:50Z<p>Set the CSS "display" property for the label to be a block element and use that instead of your div - it keeps the semantic meaning of a label while allowing whatever styling you like.</p>
<p>For example</p>
<pre><code> <label for="test" style="width: 100px; height: 100px; display: block; background-color: #e0e0ff;"><br> A ticky box! <input type="checkbox" id="test" /><br> </label><br></code></pre>http://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well/26228#262281Answer by Euro Micelli for How do I make a checkbox toggle from clicking on the text label as well?Euro Micelli2008-08-25T15:21:39Z2009-02-13T01:11:36Z<p>As indicated by @Gatekiller and others, the correct solution is the <label> tag.</p>
<p>Click-in-the-text is nice, but there is another reason to use the <label> tag: accessibility. The tools that visually-impaired people use to access the web need the <label>s to read-out the meaning of checkboxes and radio buttons. Without <label>s, they have to guess based on surrounding text, and they often get it wrong or have to give up. </p>
<p>It is very frustrating to be faced with a form that reads <em>"Please select your shipping method, radio-button1, radio-button2, radio-button3".</em></p>
<p>Note that web accessibility is a complex topic; <label>s are a necessary step but they are not enough to guarantee accessibility or compliance with government regulations where it applies.</p>