up vote 5 down vote favorite
4
share [g+] share [fb]

I have an HTML page with multiple checkboxes.

I need one more checkbox by the name "select all". When I select this checkbox all checkboxes in the HTML page must be selected. How can I do this?

link|improve this question

0% accept rate
If you want to degrade gracefully, selecting the "select all" should actually mean that all are selected regardless of their individual state. (visiting your page with javascript disabled) – some Dec 22 '08 at 17:09
feedback

4 Answers

<script language="JavaScript">
function toggle(source) {
  checkboxes = document.getElementsByName('foo');
  for each(var checkbox in checkboxes)
    checkbox.checked = source.checked;
}
</script>

<input type="checkbox" onClick="toggle(this)" /> Toggle All<br/>

<input type="checkbox" name="foo" value="bar1"> Bar 1<br/>
<input type="checkbox" name="foo" value="bar2"> Bar 2<br/>
<input type="checkbox" name="foo" value="bar3"> Bar 3<br/>
<input type="checkbox" name="foo" value="bar4"> Bar 4<br/>

UPDATE:

The for each...in construct doesn't seem to work, at least in this case, in Safari 5 or Chrome 5. This code should work in all browsers:

function toggle(source) {
  checkboxes = document.getElementsByName('foo');
  for(var i in checkboxes)
    checkboxes[i].checked = source.checked;
}
link|improve this answer
+1 for use of obscure for-each-in construct :) – porneL Dec 22 '08 at 16:00
for each(var checkbox in checkboxes) --------------------------------------- should: for(var checkbox in checkboxes) – HelloWorld Jun 16 '10 at 5:14
@HelloWorld: for each...in is actually valid Javascript: developer.mozilla.org/en/Core_JavaScript_1.5_Reference/… But, as porneL has pointed out, it's an obscure construct. Also, this code doesn't work in Safari 5 or Chrome 5. It works in FF 3.6, and IIRC, it worked in Safari 4. for(var i in checkboxes) checkboxes[i].checked = source.checked works in all browsers. – Can Berk Güder Jun 16 '10 at 11:18
If adopting this for jquery, remember that the source variable becomes an EventHandler class, for click events, so you need to specify the target object for the checked command to work. See my answer below. – khylo Jul 6 '11 at 11:37
@CanBerkGüder What if you wanted the check all boxes on one page? One check all to control one set of checkboxes and another check all to control another set. – Rob Sep 29 '11 at 16:06
feedback

Using jQuery:

// Listen for click on toggle checkbox
$('#select-all').click(function(event) {   
    if(this.checked) {
        // Iterate each checkbox
        $(':checkbox').each(function() {
            this.checked = true;                        
        });
    }
});

HTML:

<input type="checkbox" name="checkbox-1" id="checkbox-1" />
<input type="checkbox" name="checkbox-2" id="checkbox-2" />
<input type="checkbox" name="checkbox-3" id="checkbox-3" />

<!-- select all boxes -->
<input type="checkbox" name="select-all" id="select-all" />
link|improve this answer
i'd add an else clause to handle the deselect use case, ;-) .. else { // Iterate each checkbox $(":checkbox").each(function() { this.checked = false; }); } – emeraldjava Jul 8 '10 at 14:47
feedback

JavaScript is your best bet. The link below gives an example using buttons to de/select all. You could try to adapt it to use a check box, just use you 'select all' check box' onClick attribute.

Javascript Function to Check or Uncheck all Checkboxes

This page has a simpler example

http://www.htmlcodetutorial.com/forms/_INPUT_onClick.html

link|improve this answer
feedback

If adopting the top answer for jquery, remember that the object passed to the click function is an EventHandler, not the original checkbox object. Therefore code shoudl be modified as follows.

Html

<input type="selectThemAll" /> Toggle All<br/>

<input type="checkbox" name="foo" value="bar1"> Bar 1<br/>
<input type="checkbox" name="foo" value="bar2"> Bar 2<br/>
<input type="checkbox" name="foo" value="bar3"> Bar 3<br/>
<input type="checkbox" name="foo" value="bar4"> Bar 4<br/>

Javascript

jQuery("[name=selectThemAll]").click(function(source) { 
    checkboxes = jQuery("[name=foo]");
    for(var i in checkboxes){
        checkboxes[i].checked = source.target.checked;
    }
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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