How to check if a string contains [a-zA-Z] characters only?
[a-zA-Z]
Example:
var str = \'123z56\';
Ahh, found the answer myself:
if (/[a-zA-Z]/.test(num)) { alert('Letter Found') }