I have a form in my web but I've been receiving some span so I add Google RecaptchaV2 and it stop the span but I would like disable the Submit button until the Recaptcha is checked and the user prove that is human.
The RecaptchaV2 run inside a Iframe, how can I read an element or a property to disable the Submit?
Inside the Iframe there is a span that change content once is verified: from:
<span id="recaptcha-accessible-status">Recaptcha requires verification</span>
to:
<span id="recaptcha-accessible-status">You are verified</span>
So reading that I think might be possible disable/enable the submit button with Jquery, tried using content() to read it but can't access to the iframe content, any ideas?
Thank you!