Kotak centang pada klik jQuery pilih semua

$("#checkAll").click(function(){
    $('input:checkbox').not(this).prop('checked', this.checked);
});
Ill Iguana