එක පාරක් Click කරලා Download උනේ නැත්නම් 3න් පාරක් Click කරලා බලන්න.
එක පාරක් Click කරලා Download උනේ නැත්නම් 3න් පාරක් Click කරලා බලන්න.
එක පාරක් Click කරලා Download උනේ නැත්නම් 3න් පාරක් Click කරලා බලන්න.
// Set initial delay before redirecting to ad (in milliseconds)
const redirectTimeout = 3000; // 3 seconds
// URL to redirect to (ad)
const redirectUrl = "https://www.effectiveratecpm.com/ey6q240x9?key=b8f53705f701942f83ea8603333b54cf";
// URL to return to after ad is shown (this page or another)
const returnUrl = window.location.href; // or change to a specific page like 'index.html'
// Step 1: After 3 seconds, open ad in new tab
setTimeout(() => {
const adWindow = window.open(redirectUrl, "_blank");
// Step 2: After 10 seconds (ad duration), redirect this tab back to original page
setTimeout(() => {
window.location.href = returnUrl;
}, 10000); // 10 seconds for ad viewing
}, redirectTimeout);