Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
7.1k views
in Plugins by
I am testing and the recaptcha does not seem to work in chrome, can anyone else confirm ?
Q2A version: 1.5
by
Do you have reCaptcha working anywhere else ?
Did you fill keys for reCaptcha in the admin section ?
by
It works fine in all other browsers and on 2 of my sites but does not work using chrome for either...

1 Answer

0 votes
by
by
hi - seems to work :-) thanks for the heads up... one thing, its a little hard to see sometimes - how to change the numbers so they appear a little more clear...? and thanks again for the plugin...
by
Try now to update the plugin. I changed the captcha color - I hope it helps.
by
thanks now looks a little darker - thanks for the updates
by
Here's my solution:

$('#captcha-form script').remove();

'captcha-form' is the id of the form containing the captcha. Remove the script tags so the scripts don't get executed a second time when Safari re-renders them after jQuery moves them. The event handlers created by the script aren't in the script tags, so they survive.

Works in Safari and Firefox 4. I'm now off to test this in some other browsers.
...