I would like to capture a click event on Google reCAPTCHA like below.
I am using the below code.
jQuery('#I0_1444640729099').on('load', function() {
jQuery(".recaptcha-checkbox-checkmark").click(function() {
alert("test");
});
});
But I cannot do that. Can anyone help me in this regard?? I would like to catch the successful captcha submission event too.