Redirecting…
Please wait while we redirect you to the link.
5
countdown seconds
let timer = setInterval(()=>{
document.getElementById("count").innerText = c;
c--;
if(c < 0){
clearInterval(timer);
document.getElementById("goUrl").style.display = "inline-block";
document.getElementById("count").style.display = "none";
}
},1000);
document.getElementById("goUrl").onclick = function(){
window.location.href = realURL;
}
0
0
Loading...