Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/11/2004, 10:17
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años
Puntos: 772
Hola TCL_ZIP.

El textbox:

<input type="textbox" onkeypress="return tecla(event)" />

Y la función:
Código HTML:
function tecla(e) {
	tec=(document.all) ? e.keyCode : e.which;
  if(tec==32)
    return false;
}
Saludos,