vote up 3 vote down star
1

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.

flag

Can you edit the original question? Currently, the highest-rated answer IS the best for the question, as worded. The accepted answer actually answers an update to the question, and I've modded appropriately (will reverse after edit). – Bobby Jack Oct 8 '08 at 23:01

8 Answers

vote up 5 vote down check

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.

For example

 <label for="test" style="width: 100px; height: 100px; display: block; background-color: #e0e0ff;">
A ticky box! <input type="checkbox" id="test" />
</label>
link|flag
It's better to put the checkbox outside the label. – MrFox Aug 31 at 17:21
vote up 17 vote down

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.

<label for="surname">Surname</label>
<input type="checkbox" name="surname" id="surname" />

The for attribute on the label element links to the id attribute on the input element and the browser does the rest.

This has been testing to work in:

  • IE6
  • IE7
  • Firefox
link|flag
vote up 2 vote down

Ronnie,

If you wanted to enclose the label text and checkbox inside a wrapper element, you could do the following:

<label for="surname">
Surname
<input type="checkbox" name="surname" id="surname" />
</label>
link|flag
vote up 1 vote down

As indicated by @Gatekiller and others, the correct solution is the <label> tag.

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.

It is very frustrating to be faced with a form that reads "Please select your shipping method, radio-button1, radio-button2, radio-button3".

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.

link|flag
vote up 0 vote down

The <label> 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?

link|flag
vote up 0 vote down

You can wrap your checkbox in the label:

<label style="display: block; padding: 50px 0 0 50px; background-color: pink; width: 80px; height: 80px">
  <input type="checkbox" name="surname">
</label>
link|flag
vote up 0 vote down

Wrapping with the label still doesn't allow clicking 'anywhere in the box' - still just on the text! This does the job for me:

<div onclick="dob.checked=!dob.checked" class="checkbox"><input onclick="checked=!checked" id="dob" type="checkbox"/>Date of birth entry must be completed</div>

but unfortunately has lots of javascript that is effectively toggling twice.

link|flag
vote up -1 vote down

Somebody pipped me to the post - I was answering my own question and about to ask a second one :-(

What about when I want to wrap the whole thing in a box:

<div onClick="cbsel('item1')" style="border: solid 1 black; width: 30em"><input id=item1 type="checkbox" name="cb" value="item1"></div>

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!

link|flag

Your Answer

Get an OpenID
or

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