I'im using jquery validate (v. 1.13.1). I'm also using a captcha DEMO
I can't have both script to work together.
Only one similar question found here, unfortunately, no answer : Combining jQuery validate and jQuery Real Person
Here's what I've done so far (the basic function, as all tests have failed..) :
$("#formsubmit").click(function(e){
$("#form-contact").validate({
rules: {
nom: "required",
email: "required",
tel: "required"
}
});
if($('ul').validate1() == true) {
alert("Yeah, you are a human!")
} else {
alert("No, you are an alien !") }
});
Google was useless... Can anyone help please ? some advice ? TY