Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/02/2013, 12:32
marco64yes
 
Fecha de Ingreso: septiembre-2010
Mensajes: 350
Antigüedad: 14 años, 3 meses
Puntos: 9
Exclamación getElementsByTagName No me esta funcionando

Hola amigos,

Tengo esta duda, deseo dar un click a un boton que es creado con javascript mediante la etiqueta getElementsByTagName pero no esta funcionando de la manera en que lo tengo, estoy bien o me falta algo mas?


Código PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<
html>
<
head>
<
title>Untitled</title>
     <
script>
      
document.write("<input type='button' value='Ok' onClick='cambia()' />");
      
     function 
cambia(){
          
alert("IN");    
     }
     function 
test(){
          
alert("onload In");
          
document.getElementsByTagName("input")[0].Click
     
}
    
</script>
</head>
 
<body onload="test()">
</body>
</html> 
Gracias!!