var durl = "aHR0cHM6Ly9kb29kLnJlL2QvNXR5bmVuZXpubGZwLw=="; var timeleft = 9; var downloadTimer = setInterval(function(){ timeleft--; document.getElementById("download-seconds").textContent = timeleft; if(timeleft <= 0) { clearInterval(downloadTimer); document.getElementById("download-button").href=atob(durl); document.getElementById("download-button").target="_blank"; document.getElementById("download-button").textContent="Download video"; } },1000);