SABE
Classes
Tutorials
Tools
Demos
Community
Discord
Pro
Dark mode toggler
SABE
Classes
Tutorials
Tools
Demos
Community
Discord
Pro
Dark mode toggler
@nabilabolo
View Forum Profile
Latest Forum Posts
Hi, I am beginner to the programming. I have a code that will auto click the button every 11PM every. But unfortunately, the code doesn't work. I need to click the button by myself. Here I put my code for your reference. Thank you in advance <html> <form method="POST"> <input type="submit" name="submit" id="download" style="display:none;" href="javascript:void(0)" class="btn refreshListButton" title="Download"> </form> <script> window.onload = function() { var date = new Date(); if(date.getHours()=="23") { var button=document.getElementById("download"); button.click(); } } </script> </html>