I want to select all checkbox elements expect disabled ones,
checkbox
this is my html
$('#chkSelectAll').click(function () { var checked_status = this.checked; // alert(checked_status); $('div#item input[type=checkbox]').each(function () { if(!$(this).is(':disabled'){ this.checked = checked_status; } }); })