how disable popup challenge on submit for recaptcha invisible mode -




i integrate google invisible recaptcha on form website. before try visible recaptcha , work perfectly. , want use invisible mode , don't want displaying popup challenge question.

i try lot of solution popup appear time when click on submit button.

i try 'inherited' option in grecaptcha.render function :

var onloadcallback = function() {     grecaptcha.render('contact_submit', {         'sitekey' : '6lf4nsiuaaaaaikpyu1piop_weol5yo-tzgj-ws7',         'callback' : onsubmit     }, true); }; 

with button

                <button                     id="contact_submit"                     class="g-recaptcha"                     data-sitekey="6lf4nsiuaaaaaikpyu1piop_weol5yo-tzgj-ws7"                     data-callback=""                     data-size="invisible">                     submit                 </button> 

it display popup :

enter image description here

i try tutorial same behaviour : tuto





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -