$("input[id*='chkListSubCat']:checkbox").click(function () {
if ($(this).is(':checked')) {
if ($(this).val() != "-1") { $("input[id*='chkListSubCat']:checkbox").filter('[value="-1"]').attr("checked", false);
}
else
$("input[id*='chkListSubCat']:checkbox").filter('[value!="-1"]').attr("checked", false);
}
});
No comments:
Post a Comment
Comments