I'm trying to write a piece of jQuery code where, if all checkboxes are "unchecked", then all li tags have the class "disabled."

But, if one checkbox (any checkbox) is checked, then all [li] tags lose the class "disabled".

Many thanks!

link|improve this question
Do you want to remove 'disabled' class if at least one checkbox is checkd OR EXACTLY one checkbox is checked? – SolutionYogi Jul 21 '09 at 16:28
I want it if at least one checkbox is checked. – SMTDev Jul 21 '09 at 17:15
Thanks RaYell, your code helped tremendously! – SMTDev Jul 21 '09 at 17:19
feedback

4 Answers

up vote 12 down vote accepted
$(':checkbox').click(function () {
    $('li').toggleClass('disabled', !$(':checkbox:checked').length);
});
link|improve this answer
You should use $('#myform input[type=checkbox]:checked') if you only want the checkboxes in a form with id myform. – WTP'-- Jul 21 '09 at 16:24
I think you meant $("li") instead of $("*"). – Philippe Leybaert Jul 21 '09 at 16:24
Yes, I notices that typo and fixed it. – RaYell Jul 21 '09 at 16:25
You can just use if ($('input[type=checkbox]:checked').length) rather than using the extra count variable. – Matt Sach Jul 21 '09 at 16:25
2  
You can replace the branch with a call to toggleClass instead of two different calls (one to addClass and one to removeClass): $('li').toggleClass('disabled', (count===0)); – Ken Browning Jul 21 '09 at 16:29
show 14 more comments
feedback

Hi guys I came across this post by accidient and I thought i would add my shilling worth:

jQuery(':checkbox')
.click( function()
{
if (jQuery(this).is(':checked'))
alert("Checked");
else alert("Unchecked");
} );

link|improve this answer
feedback

Slight modification of Phillipe Leybaert's, which will include any dynamically added checkboxes:

$('input[type=checkbox]').live('click', function () {
    if ($('input[type=checkbox]:checked').length)
    {
        $('li').addClass('disabled');
    }
    else
    {
        $('li').removeClass('disabled');
    }
});
link|improve this answer
4  
"change" is not a good event to capture for checkboxes. You should always use "click" (which is also fired when a checkbox is selected using the keyboard). – Philippe Leybaert Jul 21 '09 at 16:33
Excellent point, and one I should have remembered from previous code. IE doesn't handle "change" on checkboxes, for starters. – Matt Sach Jul 21 '09 at 17:07
feedback
$(':checkbox')
    .click(
        function() 
        { 
            $('li').toggleClass('disabled', $(':checkbox :checked').length <= 0));
        }
     );

EDIT: Thanks Ken for pointing out toggleClass method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown