You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Use click on reCaptcha's checkbox using IE8
An error was thrown,
http://gyazo.com/2cd2addcdd3f7e25ff71b3f01a1dadaa
After this error captcha newer stops loading (js is broken -
http://gyazo.com/57b058138bae7add482479cc8cee60c1);
Code that invokes the recaptcha:
function invokeReCaptcha() {
grecaptcha.render(
"cplace",
{
"sitekey": "!!",
"theme": "light",
"callback": function() {
validateCaptchaC($('#g-recaptcha-response').val());
accept_policy_check();
},
"expired-callback": function() {
validateCaptchaC($('#g-recaptcha-response').val());
grecaptcha.reset();
accept_policy_check();
}
}
);
}
function onloadCallback() {
try {
invokeReCaptcha();
}
catch (e) {
$('#cplace').empty();
invokeReCaptcha();
}
}
$(document).ready(function () {
$.getScript('https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit')
});
HTML Element:
<div id="cplace" style="margin-left:35%" ></div>
Platform - Salesforce.com, IE 8 NOT in Compatibility Mode (In this mode
reCaptcha does not show any images at all)
Please provide any additional information below.
Original issue reported on code.google.com by [email protected] on 20 Apr 2015 at 12:18
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 20 Apr 2015 at 12:18The text was updated successfully, but these errors were encountered: