Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/06/2012, 17:38
Yoi
 
Fecha de Ingreso: noviembre-2008
Mensajes: 144
Antigüedad: 16 años
Puntos: 2
saber q elemento es radio button

Hola a todos, a lo mejor este codigo es sencillo, no lo se, pero no me da, tengo el siguiente codigo
Código Javascript:
Ver original
  1. if ($('.class_gamacart').length){
  2.         $(".class_gamacart").each(function (index) {
  3.             ngam = '';
  4.             alert(this);
  5.             if($(this+':radio').length){
  6.                 if($(this).is(':checked')){
  7.                     ngam = $(this+":checked").val();
  8.                     }
  9.                 }
  10.             else{
  11.                
  12.                 if($(this).val()!="no"){
  13.                     ngam = $(this).val();
  14.                     }
  15.                 }
  16.             if(ngam!='')
  17.                 gammaselected += ngam + '|';
  18.             }); //end each
  19.         }//endif
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...