Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/03/2008, 10:04
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: Evitar espacios en textbox

Hola lrunge

Un poco más sencillo:

Código PHP:
<html>
<
head>
<
script type="text/javascript">
function 
validar(e) {
  
tecla = (document.all) ? e.keyCode e.which;
  return 
tecla!=32;
}
</script>
</head>
<body>
<input onkeypress="return validar(event)" type="text">
</body>
</html> 
Saludos,