Código Javascript:
la clase class_gamacart la puede tener un select o un radio button, el problema que tengo es q tengo q preguntar cual de estos elementos es el radio button ahi en el ciclo, espero me colaboren y me haya hecho entender, muchas gracias... Ver original
if ($('.class_gamacart').length){ $(".class_gamacart").each(function (index) { ngam = ''; alert(this); if($(this+':radio').length){ if($(this).is(':checked')){ ngam = $(this+":checked").val(); } } else{ if($(this).val()!="no"){ ngam = $(this).val(); } } if(ngam!='') gammaselected += ngam + '|'; }); //end each }//endif