// Ad link new tab me open karein
window.open("https://www.effectiveratecpm.com/q0s37ndvnh?key=411587425488201c7bd328a323ebffe0", "_blank");
// 60 second ka timer lagayein
let timeLeft = 60;
let timer = setInterval(() => {
timerText.innerText = `Please wait ${timeLeft} seconds...`;
timeLeft--;
if (timeLeft < 0) {
clearInterval(timer);
timerText.innerText = "";
button.disabled = false;
// 60 seconds baad prompt show karein
let newWriteName = prompt("Write Your name:");
if (newWriteName) {
const newUrl = window.location.href.split('?')[0] + "?name=" + encodeURIComponent(newWriteName);
window.location.href = newUrl;
}
}
}, 1000);
}
function shareOnWhatsApp() {
let message = `Happy Ramzan Mubarak! 🎉\n\nHi dear Friend, Happy Ramzan Mubarak to You and your family!\n\nCheck out this special message: ${window.location.href}`;
let whatsappUrl = `https://api.whatsapp.com/send?text=${encodeURIComponent(message)}`;
window.location.href = whatsappUrl;
}