I understand many users have already asked similar questions, but my question is a bit different, and please don't shoot me!
I have a form and it is protected with CAPTCHA. but I realise I still receive spam. I suspect the spammer somehow does not even engage my captcha and just submit the form somehow without using my captcha protection.
I was wondering how that would be possible. can someone submit my form and the inquiry even by not engaging my captcha code at all?
I am using this code:
////:submit data using javascript: ////
$(function () {
$('.CaptchaSubmit').click(function () {
if (CheckCaptcha() != true) {
return false;
} else {
//put your submit Button Code...
}
});
});