I have two forms on a page. One is a MailChimp subscribe form which uses validate.js (http://bassistance.de/jquery-plugins/jquery-plugin-validation) to validate the form, and another form, generated by Contact form 7, which uses the plugin's custom validation script.
I've narrowed the source of the problem to Validate.js. When validate.js is enabled, Contact Form 7 will not submit (the spinning ajax arrow just keeps spinning), and I get the following error from firebug:
Error: invalid label
Source File: http://myurl.com
Line: 0, Column: 1
Source Code:
{"mailSent":false,"into":"#wpcf7-f100-p101-o1","captcha":null,"message":"Validation errors occurred. Please confirm the fields and submit it again.","invalids":[{"into":"span.wpcf7-form-control-wrap.your-name","message":"Please fill the required field."},{"into":"span.wpcf7-form-control-wrap.your-email","message":"Please fill the required field."}]}
The particular line that's quoted in the error message doesn't appear anywhere in any of the scripts, so I believe it's generated on submit. Does anyone have any experience with this issue or know of a way to resolve it?