Ver Mensaje Individual
  #4 (permalink)  
Antiguo 08/04/2005, 11:31
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
Hola de nuevo.

Te pongo un poco de código:
Código PHP:
<html>
<
head>
<
script type="text/javascript">
function 
pulsar(e) {
  
tecla=(document.all) ? e.keyCode e.which;
  if(
tecla==32) return false;
}
</script>
</head>
<body>
<input type="text" onkeypress="return pulsar(event)" />
</body>
</html> 
Saludos,