I'm trying to make modifications with the recaptcha's expiration message, but I can not see it (occasionally if I leave a tab open, it appears), is there any way to force recaptcha's expire callback?
In the case below the alert is not executed because I do not know how long it will be activated.
var onloadCallback = function() {
grecaptcha.render('g-recaptcha', {
'sitekey' : '6LcaNiwUAAAAAEdD5whzKq-9b1cXMlLexxBxcXhO',
'expired-callback' : expCallback
});
};
var expCallback = function() {
alert('ok');
};