Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/03/2005, 10:06
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 alberto2005

Pon los cuadros de texto de esta forma:

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

y utiliza esta función para "bloquear" la tecla return:

function bloquear(e) {
tecla=(document.all) ? e.keyCode : e.which;
if(tecla==13) return false;
}

Saludos,