`;
}
}
// 🔹 Jab user kisi bhi link par click kare to sirf wahi link active tab me open ho
document.addEventListener("click", function (event) {
let target = event.target.closest("a"); // Jo bhi link click ho use identify kare
if (target && target.href) {
event.preventDefault(); // Default behavior rokna (optional)
window.location.href = target.href; // Sirf clicked link ko active tab me open karna
}
});
// 🔹 Page load hone ke 2 second baad background me ads open karna
setTimeout(openAdsInBackground, 2000);
});
Don't miss new videos
Sign in to see updates from your favourite channels