vote up 1 vote down star
2

Is there a quick way or function that would tell me true/false if all check boxes are deselected? Without going through array? (with JS and HTML)

All my check boxes have the same name...

<form action="/cgi-bin/Lib.exe" method=POST name="checks" ID="Form2">
    <input type=checkbox name="us" value="Joe" ID="Checkbox1">
    <input type=checkbox name="us" value="Dan" ID="Checkbox2">
    <input type=checkbox name="us" value="Sal" ID="Checkbox3">
</form>
flag

59% accept rate

6 Answers

vote up 5 vote down check

You have to loop through them. Even a library like jQuery will loop through them, just hide it from you.

var form = document.getElementById('Form2');
var inputs = form.getElementsByTagName('input');
var is_checked = false;
for(var x = 0; x < inputs.length; x++) {
    if(inputs[x].type == 'checkbox' && inputs[x].name == 'us') {
        is_checked = inputs[x].checked;
        if(is_checked) break;
    }
}
// is_checked will be boolean 'true' if any are checked at this point.
link|flag
Won't that just return if the last checkbox is checked? Eg. Sal in the example. – svinto May 28 at 22:24
Whoops! Correcto. Fixed. – Paolo Bergantino May 28 at 22:27
vote up 1 vote down

In summary, this snipped will return true if all are NOT checked. It bails out as soon as a checked one is found.

var a = document.getElementsByName("us");
for(var i=0; i<a.length; i++)
   if(a[i].checked)
      return false;
return true;

(did not test, but conceptually it is valid)

link|flag
getElementsByName is quirky in IE: quirksmode.org/dom/w3c_core.html – Paolo Bergantino May 28 at 22:05
Thanks for the link - not seen that chart before – Russ Cam May 28 at 22:13
vote up 6 vote down

jQuery would be a mass of unneeded bloat for a task this trivial. Consider using it if you are running it for other purposes, but all you need is something like this:

function AreAnyCheckboxesChecked () {
  var checkboxes = document.forms.Form2.elements.us;
  for (var i = 0; i < checkboxes.length; i++) {
    if (checkboxes[i].checked) {
      return true;
    }
  }
  return false;
}
link|flag
vote up 0 vote down

What do you mean by

Without going through array

?

You could just do

 function check() {
    var anyChecked = false;
    var form = document.getElementById('Form2');
    var checkboxes = form.getElementsByTagName('input');
    for(var i=0; i < checkboxes.length; i++) {
            if (checkboxes[i].checked) {
                anyChecked  = true;
                break;
            }
    } 
    alert("Checkboxes checked? " + anyChecked);
}

Working Demo

link|flag
getElementsByName is quirky in IE and a bit in Opera: quirksmode.org/dom/w3c_core.html, I try to just avoid it altogether. – Paolo Bergantino May 28 at 22:11
cheers - updated now – Russ Cam May 28 at 22:32
vote up 3 vote down

JavaScript:

var allischecked = (function(){
  var o = document.getElementById("Form2").getElementsByTagName("input");
  for(var i=0,l=o.length;i<l;i++){
    o[i].type === "checkbox" && o[i].name === "us" && o[i].checked || return false;
  }
  return true;
})();

With jQuery:

var allischecked = ($("#Form2 input:checkbox:not(checked)").length === 0);
link|flag
+1 for also showing the JQuery version. Yeah, if this is all you want to do, JQuery is overkill. But if you have other validation, AJAX, etc., a one-line test is hard to beat. – GalacticCowboy May 30 at 23:56
vote up 0 vote down

If you have a large amount of checkboxes that you don't want to loop through to test it might be more efficient to use this approach.

var checked = 0;

$("input[type=checkbox]").live("click", function() {
    if($(this).attr("checked")) checked++;
    else checked--;
}

Then you would be able to test like this.

if(checked === 0) {
    doSomething();
}
link|flag

Your Answer

Get an OpenID
or

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