본문 바로가기

js/jQuery

[jQuery] to find checkbox and change attribute



1
2
3
4
5
6
7
8
9
10
11
$(".Chk_Choice").click(function () {
    var parentChildren = $(this).parent().parent().parent().children();
    var parentAllChecked = false;
    var isChecked = $(this).is(":checked");
    var checkboxId = $(this).attr("id");
    $.each(parentChildren.find("input[type=checkbox]"), function (index, item) {
        if (checkboxId != $(item).attr("id")) {
            $(item).attr("disabled", isChecked);
        }
    });        
});
cs