Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/01/2006, 11:00
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años
Puntos: 5
Sobre la FAG 224

Hola a todos.
cuando puse este script en el FAG, no me percate que el mismo no funcionaba para FireFox, solamente funciona para IE....
necesito saber como capturar la tecla de ESCAPE en Firefox, ya que me devulve cero (0). la he modificado asi:

http://www.forosdelweb.com/showpost....&postcount=224

Código PHP:
<script language="javascript">
 function 
_CloseOnEsc() {
  var 
tecla = (!document.all) ? event.wich event.keyCode;
  if (
tecla == 27) { window.close(); return; }
 }
 function 
InitESC(obj) {
  
obj.onkeypress = function() {
   
//alert(event);
   
_CloseOnEsc();
  }
 }
</script> 
Código HTML:
<body onload="InitESC(this);"></body> 
no me funciona.. alguien para ver si me ayuda a resolver este misterio y asi actualizar el FAG para que todos tengamos el codigo...

saludos
__________________
Saruman

One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them.