Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/11/2005, 16:05
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 18 años, 9 meses
Puntos: 39
Hola turco_7!
Prueba asi:
Código HTML:
<html>
<head>
<script>
function esF12(e)
{
tecla=(document.all) ? e.keyCode : e.which;
if(tecla==123){
document.f1.submit();
}
return false;
}
</script>
</head>
<body onKeyDown="return esF12(event)">
</body>
</html> 
Quizas haga falta agregar return true; dentro del if.
suerte
__________________
No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte.