How do you set the badge position with reCAPTCHA v3?

前端 未结 6 1330
长发绾君心
长发绾君心 2020-12-29 05:05

I would like to use an inline badge with v3, but there is no documentation on badge position for v3.

6条回答
  •  北荒
    北荒 (楼主)
    2020-12-29 05:41

    After execute, you can move the badge by Javascript. It will fix recaptcha timeout error in firefox and chrome browsers.

    grecaptcha.ready(function() {  
            grecaptcha.execute('sitekey', {actienter code hereon: 'loginpage'}).then(function(token) {
                   /* Move Google Badge to your Div ID */
                   jQuery('.grecaptcha-badge').appendTo("#g-badge-newlocation");
            });
        });
    

提交回复
热议问题