Hola zerokilled!
Muchísimas gracias!
solo cambié las funciones changeNum() y changeLet(), quedando así:
Código:
function changeNum() {
document.getElementById("prof_cod").value="";
document.getElementById("prof_cod").onkeypress=function Num(b){
// NOTE: Backspace = 8, Enter = 13, '0' = 48, '9' = 57
tecla = (document.all) ? b.keyCode : b.which;
if (tecla==8||tecla==0) return true;
patron =/[0-9]/;
te = String.fromCharCode(tecla);
return patron.test(te);
}
}
function changeLet(){
document.getElementById("prof_cod").value="";
document.getElementById("prof_cod").onkeypress=function Let(e) {
tecla = (document.all) ? e.keyCode : e.which;
if (tecla==8 || tecla==0) return true;
patron = /[A-Za-z]/;
te = String.fromCharCode(tecla);
return patron.test(te);
}
}