I have some jQuery and RegEx code that works great validating email addresses...as long as the address is based on simple Latin characters. However, when we plu
Take a look at the XRegExp library. It is a Javascript library that implements a Unicode-aware regex engine, including character classes like \p{Letter} that can be used to match letters outside the usual ASCII range.