We have a customer conditionally hiding the submit button with
$('.Submit').hide();
However for the same reason they are hiding the submit button, they want the recaptcha object to be hidden with it (since these 2 always go together)
If we add the following right below the command to hide submit
$('#recaptchabox').hide();
Nothing happens.
If I manually go into the dev console, select the recpatchabox div and right click I can hide the element no problem.