Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/11/2007, 05:52
August
 
Fecha de Ingreso: febrero-2005
Mensajes: 626
Antigüedad: 19 años, 9 meses
Puntos: 10
getelementbyid value, solo en IE

Hola, Uso esta funcion, pero solo funciona en Internet Explorer, pero no en Mozilla


Código HTML:
function ActInfo(){
    var lugar= new Array ("Estado","Municipio","Asentamiento","CP","calle","numint","numext","telefono");
    var unilugar=new Array();
    for (i = 0; i < 8; i++){
              var capa=lugar[i];
               unilugar[i]= document.getElementById(capa).value;
    }
            var ellugar=unilugar.join(",");


}
Que estare haciendo mal?

Gracias de antemano

Última edición por August; 05/11/2007 a las 07:44