Need help with this code

UnicornLv

Newbie
Joined
Mar 14, 2016
Messages
27
Reaction score
6
Hello everyone, image is below with the question
 

Attachments

  • 02ː32ː38(13.05.2019).png
    02ː32ː38(13.05.2019).png
    625.7 KB · Views: 58
Set the style tag on your button to style="display: none;" to stop it from being seen on initial load of the page

<button id="myButton" style="display: none;">Verify</button>

On the recaptcha div add data-callback="myFunctionName"

<div class="g-recaptcha" data-callback="recaptchaCallback" data-sitekey="blahblahblah"></div>

Now, you need some Javascript to show the button
<script>
function recaptchaCallback() {
alert('I should have googled this question'); // Remind yourself to google before asking simple questions
$("#myButton").show(); // Use JQuery to find the dom object by ID and show it
};
</script>
 
next time say the site and what app you use or the programming language to make the bot

then

1 site ??

2 app ?

3 or programming language

is easy go on in 2 minute but need name site
 
Back
Top