In my website, I'm receiving some subscriptions spam. All of them is from people which type their names using Russian alphabet.
I know that in this case the most recommended thing to do is put a captcha in my subscription page form. But, as this case is so specific, and at the same time I don't want to affect my real customers experience, in a first time I would like to have a jQuery script which deny the form submit when detects Russian alphabet in some input. Can some one help me with it? (Or is better do it using PHP?)
<form action="#" id="form-validate">
<input type="text" class="input" id="firstname">
<button class="submit">teste</button>
</form>
To be more specific. For example, a script that detects a Cyrillic character in the input string, such as: "John Потоцкая Doe", and then avoid the form submit.
Thanks a lot in advance.