Ver Mensaje Individual
  #6 (permalink)  
Antiguo 13/10/2004, 09:22
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Hola de nuevo.

Rescato este mensaje, proque no me funciona del todo el código que propuso Carlitos (¡Hola! ) Me explico, funciona bien en IE, pero no en Nescafé ni Nocilla. Voy a dejar el código que he usado para hacer pruebas:
Código HTML:
<html>
<head>
<title>Untitled</title>
<style type="text/css">
div{width:50px;height:50px;border:1px solid blue;background-color:yellow}
</style>
<script type="text/javascript">
function ini() {
  elem=document.createElement('div');
  elem.id='div1';
  elem.onclick=function() {alert(this.id)};
  document.body.appendChild(elem);
}
</script>
</head>
<body onload="ini()">
<input type="button" onclick="document.getElementById('div1').click()">
</body>
</html> 
Como siempre, gracias por vuestra ayuda. Saludos,