$("#checkAll").change(function () {
$(this).closest("table")
.find(":checkbox:not(:first)")
.prop("checked", this.checked);
});
$("#checkAll").change(function () {
$(this).closest("table")
.find(":checkbox:not(:first)")
.prop("checked", this.checked);
});