Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/03/2003, 01:02
Avatar de caricatos
caricatos
Moderador
 
Fecha de Ingreso: abril-2002
Ubicación: Torremolinos (Málaga)
Mensajes: 19.607
Antigüedad: 22 años, 11 meses
Puntos: 1284
Hola Deysidcg:

Prueba esta variación que hice de un script de JavierB (¡Saludos!):

<html>

<head>
<script>
function Enter(e) {
if (navigator.appName == "Netscape") tecla = e.which;
else tecla = e.keyCode;
if (tecla == 13) document.forms[0].submit()
}
</script>
</head>

<body>
<form action="javascript:alert('Ok')" >
<input type="text" onKeyPress="Enter(event)">
</form>
</body>

</html>

Espero que te sirva

saludos