esto modifique pero no me valida...(ojo primero sin la funcion tabular).
Código php:
aki la funcion:Ver original
<input type="text" size="55" maxlength="50" name="destinatario" onKeypress="return validaLet(this)">
Código php:
Saludos, Ver original
function validaLet(e){ // tecla = (document.all) ? e.keyCode : e.which; // if (tecla==8) return true; //Tecla de retroceso (para poder borrar) patron = /^[a-zñ\s]+$/i; // patron = /\d/; // Solo números // te = String.fromCharCode(tecla); return patron.test(e); }