Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/06/2014, 12:57
Ktulu
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: funcion de solo letras

Primero definis la funcion:
Código:
function textonly(e){
	var code;
	if (!e) var e = window.event;
	if (e.keyCode) code = e.keyCode;
	else if (e.which) code = e.which;
	var character = String.fromCharCode(code);
	//alert('Character was ' + character);
	    //alert(code);
	    //if (code == 8) return true;
	    var AllowRegex  = /^[\ba-zA-Z\s-]$/;
	    if (AllowRegex.test(character)) return true;     
	    return false; 
}
Luego inicializas los elementos que apliquen ésta regla:
Código:
$(document).ready(function(){
   $('#idinput').on('keypress',function(){
	return textonly(event);
   });
})
Espero que te sirva,
Saludos!