Open
Description
Hello there,
I've been working on a pop up form with bootstrap, my form is currently validating great however, my captcha is not validating unless I click any validated form field again. I'm currently using toggleDisabled so the form cannot be submitted until the class "has-success" is applied to the captcha wrapper. Help!
My jQuery code is below:
//jQuery Validation
jQuery.validate({
form : '.request-appt-form',
modules : 'date, html5, security, toggleDisabled',
errorMessagePosition : 'inline',
validateOnBlur : true,
validateHiddenInputs : true,
disabledFormFilter : 'form.request-appt-form',
showErrorDialogs : true,
reCaptchaSiteKey : '6Lcz2SIUAAAAAJEgs3EkdiCMfwEe83RF3rsdWuQi',
reCaptchaTheme : 'light',
reCaptchaSize : 'normal',
});