Ver Mensaje Individual
  #11 (permalink)  
Antiguo 17/06/2008, 11:10
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 18 años, 5 meses
Puntos: 280
Respuesta: Ayuda con Accesibilidad

Quizá se podría probar con esta función:

function saltar(e) {
tecla = (document.all) ? e.keyCode : e.which;
if (tecla==13) window.location = "http://www.google.es";
}

y el html

<a href="http://www.forosdelweb.com" onkeypress="saltar(event); return false;">FDW</a>

Mikel.