Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/12/2011, 16:41
Avatar de juanito1712
juanito1712
 
Fecha de Ingreso: mayo-2010
Ubicación: Valencia
Mensajes: 1.124
Antigüedad: 14 años, 6 meses
Puntos: 66
Respuesta: evitar "cannot read property 'value' of undefined"

lo pruebo y me da undefined en los dos casos :S

al final lo he solucionado así
Código Javascript:
Ver original
  1. var objetivo="vacio";
  2.                        for (var attr in e.target.attributes) {
  3.                 if(e.target.attributes[attr].name=="typex"){
  4.                     objetivo=e.target.attributes[attr].value;
  5.                 }
  6.             }
  7.             if(objetivo=="vacio"){
  8.                 for (var attr in e.target.parentNode.attributes) {
  9.                     if(e.target.parentNode.attributes[attr].name=="typex"){
  10.                         objetivo=e.target.parentNode.attributes[attr].value;
  11.                     }
  12.                 }
  13.             }

de la forma que decías tu me había gustado que es menos faena, pero bueno almenos lo he conseguido solucionar...