How do I make a checkbox toggle from clicking on the text label as well? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T15:17:05Z http://stackoverflow.com/feeds/question/2123 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well 3 How do I make a checkbox toggle from clicking on the text label as well? Ronnie 2008-08-05T11:51:16Z 2009-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 -1 Answer by Ronnie for How do I make a checkbox toggle from clicking on the text label as well? Ronnie 2008-08-05T11:59:13Z 2008-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>&lt;div onClick="cbsel('item1')" style="border: solid 1 black; width: 30em"&gt;&lt;input id=item1 type="checkbox" name="cb" value="item1"&gt;&lt;/div&gt;<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#2133 18 Answer by GateKiller for How do I make a checkbox toggle from clicking on the text label as well? GateKiller 2008-08-05T12:00:03Z 2008-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>&lt;label for="surname"&gt;Surname&lt;/label&gt;<br>&lt;input type="checkbox" name="surname" id="surname" /&gt;<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#2143 0 Answer by Ronnie for How do I make a checkbox toggle from clicking on the text label as well? Ronnie 2008-08-05T12:06:20Z 2008-08-05T12:06:20Z <P>The <CODE>&lt;label&gt;</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#2177 0 Answer by Michiel de Mare for How do I make a checkbox toggle from clicking on the text label as well? Michiel de Mare 2008-08-05T12:25:16Z 2008-08-05T12:25:16Z <p>You can wrap your checkbox in the label:</p> <pre><code>&lt;label style="display: block; padding: 50px 0 0 50px; background-color: pink; width: 80px; height: 80px"><br>  &lt;input type="checkbox" name="surname"><br>&lt;/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#2180 2 Answer by GateKiller for How do I make a checkbox toggle from clicking on the text label as well? GateKiller 2008-08-05T12:28:32Z 2008-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>&lt;label for="surname"&gt;<br> Surname<br> &lt;input type="checkbox" name="surname" id="surname" /&gt;<br>&lt;/label&gt;<br></code></pre> http://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well/2184#2184 0 Answer by Ronnie for How do I make a checkbox toggle from clicking on the text label as well? Ronnie 2008-08-05T12:34:27Z 2008-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>&lt;div onclick="dob.checked=!dob.checked" class="checkbox"&gt;&lt;input onclick="checked=!checked" id="dob" type="checkbox"/&gt;Date of birth entry must be completed&lt;/div&gt; </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#2223 5 Answer by Mat for How do I make a checkbox toggle from clicking on the text label as well? Mat 2008-08-05T12:52:50Z 2008-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> &lt;label for="test" style="width: 100px; height: 100px; display: block; background-color: #e0e0ff;"&gt;<br> A ticky box! &lt;input type="checkbox" id="test" /&gt;<br> &lt;/label&gt;<br></code></pre> http://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well/26228#26228 1 Answer by Euro Micelli for How do I make a checkbox toggle from clicking on the text label as well? Euro Micelli 2008-08-25T15:21:39Z 2009-02-13T01:11:36Z <p>As indicated by @Gatekiller and others, the correct solution is the &lt;label&gt; tag.</p> <p>Click-in-the-text is nice, but there is another reason to use the &lt;label&gt; tag: accessibility. The tools that visually-impaired people use to access the web need the &lt;label&gt;s to read-out the meaning of checkboxes and radio buttons. Without &lt;label&gt;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; &lt;label&gt;s are a necessary step but they are not enough to guarantee accessibility or compliance with government regulations where it applies.</p>