treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Test if at least one checkbox is checked

Last updated on:

In this example, a submit button is disabled if none of the checkboxes are checked and enabled if at least one is checked.

<form>
   <!-- bunch of checkboxes like: -->
   <input type="checkbox" ... >
   <input type="checkbox" ... >

   <!-- submit button, defaults to disabled -->
   <input type="submit" value="submit">
</form>

The trick is that you can use .is(":checked") on a jQuery object full of a bunch of elements and it'll return true if any of them are checked and false if none of them are. AND, using .attr() for the disabled attribute with that boolean value will enable/disable that button.

var checkboxes = $("input[type='checkbox']"),
    submitButt = $("input[type='submit']");

checkboxes.click(function() {
    submitButt.attr("disabled", !checkboxes.is(":checked"));
});

Reference URL

View Comments

Comments

  1. Bakaburg
    Permalink to comment#

    That’s net!

  2. Permalink to comment#

    elegant solution

  3. r
    Permalink to comment#

    so nice

  4. Jeff
    Permalink to comment#

    Thanks! Exactly what I needed!

  5. can we do the same with UL LI structure, like I use custom selectbox and it will convert SELECT – OPTION Tags to UL – LI, so we will be having

      li class="selected"  

    while clicking on the LI and I want atleast ONE LI has CLASS selected there. And if not there it should give alert and not able to refresh the page.

    Can you help me?

Leave a Comment

Use markdown or basic HTML and be nice.