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

Con este código se abre un pop-up pulsando F8, pero solo he conseguido que funcione en IE.
Código HTML:
<html>
<head>
<script type="text/javascript">
function abrir(e) {
	tecla=e.keyCode
  if(tecla==119)
  	window.open('tupagina.html');
}
</script>
</head>
<body onkeyup="abrir(event)">

</body>
</html> 
Saludos,