js

js


$( 'input:checked' ).val();


$("input:checkbox[name=type]:checked").each(function(){
    yourArray.push($(this).val());
});


Report Page