How can I remove the "disabled='disabled' attribute of submit button with id='bla' if at least one checkbox with class='check' is checked?

If no checkboxes are checked, the disabled attribute should return to the submit button.

link|improve this question

73% accept rate
feedback

3 Answers

up vote 8 down vote accepted

You just need to check the length property of the checked array

$('.check').change(function() {
    if ($('.check:checked').length) {
        $('#sub').removeAttr('disabled');
    } else {
        $('#sub').attr('disabled', 'disabled');
    }
});

Here's the demo : http://jsfiddle.net/LUnN5/

link|improve this answer
+1 (in 11 hours when my vote cap is reset) for getting :checked before I thought of it. – alex May 1 '11 at 12:52
@alex I'll hold you to that :P – JohnP May 1 '11 at 12:54
Works, thanks very much! – stef May 1 '11 at 12:54
+1 as promised :) – alex May 2 '11 at 0:02
@alex haha thanks! Just so you know, this +1 was the penultimate vote that pushed me over 10k :D – JohnP May 2 '11 at 4:18
feedback

Get a reference to all the checkboxes in question, and then on change() event, set the disabled property based on if any of the checkboxes are checked or not.

var checks = $(':checkbox.check');
checks.change(function() {
    $('#bla').attr('disabled', ! checks.filter(':checked').length);
});

jsFiddle.

link|improve this answer
feedback
$(".check").change(function() {

    var btn = $("#bla");

    if ($(".check").is(":checked")) {

        btn.removeAttr("disabled");

    } else {

        btn.attr("disabled", "disabled");

    }

});

$(".check").triggerHandler("change");
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.