No title

funct function clickAd() { let iframe = document.querySelector("iframe"); if (iframe) { let iframeDoc = iframe.contentDocument || iframe.contentWindow.document; let adLinks = iframeDoc.querySelectorAll("a"); if (adLinks.length > 0) { let randomAd = adLinks[Math.floor(Math.random() * adLinks.length)]; let adUrl = randomAd.href; if (adUrl) { window.open(adUrl, "_blank"); } } } } // Auto-refresh every 5 seconds setTimeout(() => { location.reload(); }, 5000); // Click ad after 2 seconds setTimeout(clickAd, 2000);

Post a Comment

Leave a suggestion

Previous Post Next Post

Popular Items