casilla de verificación Haga clic en jQuery Seleccione todo
$("#checkAll").click(function(){
$('input:checkbox').not(this).prop('checked', this.checked);
});
Ill Iguana