2
I am trying to make modifications with the recaptcha expiration message, but I can’t see it (occasionally if I leave a tab open, it appears), there is some way to force the recaptcha expiration callback?
In the case below the Alert does not run because I do not know what time to activate it.
var onloadCallback = function() {
grecaptcha.render('g-recaptcha', {
'sitekey' : '6LcaNiwUAAAAAEdD5whzKq-9b1cXMlLexxBxcXhO',
'expired-callback' : expCallback
});
};
var expCallback = function() {
alert('ok');
};