Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/06/2004, 00:58
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, DaniMino.

Creo que esto te servirá:
Código HTML:
<html>
<head>
<script>
function tecla(e) {
	t=(document.all) ? e.keyCode : e.which;
	if(t==32) return false;
}
</script>
</head>

<body>
<input type="text" onkeypress="return tecla(event)" />
</body>
</html> 
Saludos,