Skip to content
Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
if (targetUrl) {
const popup = document.createElement("div");
popup.innerHTML = `
`;
document.body.appendChild(popup);
// Smooth fade-in animation
setTimeout(() => {
const el = document.getElementById("geo-popup");
el.style.opacity = "1";
el.style.transform = "translateY(0)";
}, 100);
// Button actions
document.getElementById("go-redirect").addEventListener("click", function() {
window.location.href = targetUrl;
});
document.getElementById("stay-here").addEventListener("click", function() {
document.getElementById("geo-popup").remove();
});
}
});
}, 3000); // Wait 3 seconds before showing popup