Fortify your digital fortress, safeguarding against unseen threats. Stay vigilant, protect your data, and embrace cyber resilience.

Meet Me

How To Add Advance Download Timer Script

 1. You need to place the following code between <head></head> of your site


<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"></link>


2.Add This Code Where you wont download button –

<style> button#download-btn { padding: 10px 25px 10px 25px; border: none; border-radius: 5px; color: white; background: dodgerblue; font-weight: 600; } button#download-btn:hover { background: royalblue; cursor: pointer; } .timer { background: bisque; width: 5%; padding: 10px; font-size: 25px; border-radius: 50%; width: 7%; } </style> <!-- Google Adsense Code--> <center> <button id="download-btn" onclick="generate()"> <i class="fa fa-download"></i> Download Now </button></center> <!-- Google Adsense Code--> <center> <div id="tp-wait1" style="display: none;"> <p id="countdown" class="countdown">Thanks! Your download will start in <span id="tp-time">10</span> Seconds...</p> </div></center> <!-- Google Adsense Code--> <script> function generate() { document.getElementById('download-btn').style.display = 'none'; document.getElementById('tp-wait1').style.display = 'block'; var count = 10; var counter = setInterval(timer, 1300); function timer() { count = count - 1; if (count <= 0) { window.location.href = "Download Link"; clearInterval(counter); return; } document.getElementById("tp-time").innerHTML = count; } } </script>


Getting Info...

Post a Comment

My Real Location.

Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.