I'm using jQuery validate for a contact form:
$(document).ready(function(){
$("#contactFormid").validate();
});
and i'm using this rails plugin to generate recaptcha on my page
recaptcha_tags :public_key => 'xxxxxxxxxxxxxxxxxxxxxx_xxxxxxxxxxxxxx' , :display=>{:theme=>"white" }
how do i get jquery validate to validate my recaptcha tags before sending the info....
i have everything validated with jquery and i don't want to change it to validate on the model....