Jquery : checkbox checked
Retourne l'état checked d'un input en particulier
$('#checkBox').attr('checked');
Retourne toutes les checkbox cochées
$('input[type=checkbox]:checked');
Retourne l'état checked d'un input en particulier
$('#checkBox').attr('checked');
Retourne toutes les checkbox cochées
$('input[type=checkbox]:checked');