Hola
gabitoste
Prueba con este código:
Código PHP:
<html>
<head>
<script>
function pulsar(e) {
tecla = (document.all) ? e.keyCode :e.which;
return (tecla!=13);
}
</script>
</head>
<body>
<form>
<input type="text" onkeypress="return pulsar(event)" />
<input type="submit" />
</form>
</body>
</html>
Saludos,