How to check if a string contains [a-zA-Z] characters only?
[a-zA-Z]
Example:
var str = \'123z56\';
No jQuery Needed
if (str.match(/[a-z]/i)) { // alphabet letters found }