Ver Mensaje Individual
  #6 (permalink)  
Antiguo 27/04/2005, 08:40
MartinTandil
 
Fecha de Ingreso: marzo-2005
Mensajes: 163
Antigüedad: 19 años, 8 meses
Puntos: 0
por ejemplo asi:
function onlyChar(){
var evento_key = window.event.keyCode;
if((evento_key>=48 and evento_key<=57)||(evento_key>=97 and evento_key<=122) || (evento_key>=65 and evento_key<=90)){
return true;
}
else{
window.event.keyCode = 0;
return false;
}
}

Con esto permites letras mayusculas, minusculas y numeros.
Suerte