Snippets javascript - jquery checkbox select all
Este fragmente puede ir dentro de Document ready
jQuery('#id-chekbox-select-all').change(function(){
var _cheked=jQuery(this).is(':checked');
jQuery(".clase-checkbos-a-cambiar").attr('checked', _cheked);
});
*-*
Sebastian A. Colombini