Y que tal algo asi:
Código Javascript
:
Ver originalfunction Sololetras(tfield) {
var valid = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
var ok = "yes";
var temp;
var x =0;
for (var i=0; i<tfield.value.length; i++) {
temp = "" + tfield.value.substring(i, i+1);
if (valid.indexOf(temp) == "-1") ok = "no";
}
if (ok == "no") {
alert("Solo letras");
x=1;
tfield.focus();
document.getElementById("idcampo").value="";
}
return x;
}
Retorna un 1, si lo que ingresan no son letras...