Ver Mensaje Individual
  #4 (permalink)  
Antiguo 07/05/2004, 10:11
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses
Puntos: 772
Hola, zpl.

A ver si esto te marcha:
Código PHP:
<html>
<
head>
<
script>
function 
pulsar(e,frm) {
    
tecla=(document.all) ? e.keyCode e.which;
    if(
tecla==13) {
        
frm.submit();
        return 
false;
    }
}
</script>
</head>

<body>
<form action="loquesea.asp">
<input type="text" onkeypress="return pulsar(event,this.form)"/>
</form>
</body>
</html> 
Saludos,