Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Select all checkbox elements except disabled ones

Tags:

jquery

I want to select all checkbox elements expect disabled ones,

this is my html

<input id="chkSelectAll" class="checkbox" type="checkbox" />Select All

<div id="ContentPlaceHolder1_listItem_pnlDis_0">
    <input id="checkApproved" type="checkbox" name="checkApproved" checked="checked" disabled="disabled">
</div>
<div id="ContentPlaceHolder1_listItem_pnlDis_8" class="dis">
    <input id="checkApproved" type="checkbox" name="ctl00$ContentPlaceHolder1$listItem$ctrl8$checkApproved">
</div>

jQuery

$('#chkSelectAll').click(function () {
    var checked_status = this.checked;
    //   alert(checked_status);
    $('div#item input[type=checkbox]').each(function () {
        this.checked = checked_status;
    });
})

it's working for selecting all checkbox elements but I want to skip disabled ones.

How can I do that?

like image 721
Siz S Avatar asked May 08 '13 19:05

Siz S


1 Answers

Use not() to exclude things with a disabled attribute.

$('#chkSelectAll').click(function () {
    var checked_status = this.checked;

    $('div#item input[type=checkbox]').not("[disabled]").each(function () {
               this.checked = checked_status;
    });
});

more concise

$('#chkSelectAll').click(function () {
    var checked_status = this.checked;
    $('div#item input[type=checkbox]').not(":disabled").prop("checked", checked_status);
});
like image 105
CSharpConductor Avatar answered Sep 28 '22 13:09

CSharpConductor