lettersonly.js 150 Bytes
Newer Older
1 2 3
$.validator.addMethod("lettersonly", function(value, element) {
	return this.optional(element) || /^[a-z]+$/i.test(value);
}, "Letters only please");