Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/09/2007, 06:19
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años
Puntos: 772
Re: Current Focus

Hola borjagat

Prueba este ejemplo:

Código PHP:
<html>
<
head>
<
script type="text/javascript">
var 
foco null;
</script>
</head>
<body>
<form>
<input type="text" name="txt1" onfocus = "foco=this" />
<input type="text" name="txt2" onfocus = "foco=this" />
<input type="button" onclick = "alert(foco.name)" />
</form>
</body>
</html> 
Saludos,