Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/01/2015, 15:14
esteban308
 
Fecha de Ingreso: junio-2014
Mensajes: 18
Antigüedad: 9 años, 10 meses
Puntos: 0
Respuesta: Problema con la validación de jquery

Q tal, acá un script para inhabilitar la tecla enter. Espero te pueda servir!!

Código HTML:
<SCRIPT LANGUAGE="JavaScript"> 
function getKey(keyStroke) { 
isNetscape=(document.layers); 
eventChooser = (isNetscape) ? keyStroke.which : event.keyCode; 
if (eventChooser==13) { 
return false; 
} 
} 
document.onkeypress = getKey; 
</script>