document.addEventListener("DOMContentLoaded", function() { // Only run on homepage if (window.location.pathname !== "/") return; // Show only once per session if (sessionStorage.getItem("homepagePopupShown")) return; // Create popup document.body.insertAdjacentHTML("beforeend", `

Welcome to Jaarsma Bakery

How would you like your order?

Please choose an option to continue:

`); function closePopup() { const popup = document.getElementById("shippingPopup"); if (popup) popup.remove(); } function go(url) { closePopup(); setTimeout(() => { window.location.href = url; }, 10); } // Button actions document.getElementById("localBtn").onclick = function() { go("https://jaarsmabakery.com/products"); }; document.getElementById("shipBtn").onclick = function() { go("https://jaarsmabakery.goldbelly.com/?utm_source=partner&utm_medium=website&utm_term=2903"); }; document.getElementById("closeShippingPopup").onclick = function() { closePopup(); }; // Mark as shown sessionStorage.setItem("homepagePopupShown", "true"); });