Ver Mensaje Individual
  #3 (permalink)  
Antiguo 31/10/2007, 10:29
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
Re: duda sobre apertura de ventana al dar click en boton

Hola Gaby_Corr

Prueba poniendo así el campo:

<input type="text" onkeypress="return onKeyPressed(event) />

y usando este código:

function onKeyPressed(e){
tecla = (document.all) : e.keyCode : e.which;
return tecla!=13
}

Saludos,