var seleccionados = []; $("input[type=checkbox]").each(function(){ if($(this).is(":checked")) seleccionados.push($(this).val()); }