עגלת קניות
סל הקניות שלך ריק
function closePopup() { document.removeEventListener("keydown", escapeHandler); overlay.classList.remove("eilat-popup-visible"); document.body.style.overflow = previousBodyOverflow; setTimeout(function () { overlay.remove(); if (style.parentNode) { style.remove(); } }, 300); } closeButton.addEventListener("click", closePopup); confirmButton.addEventListener("click", closePopup); overlay.addEventListener("click", function (event) { if (event.target === overlay) { closePopup(); } }); function escapeHandler(event) { if (event.key === "Escape") { closePopup(); document.removeEventListener("keydown", escapeHandler); } } document.addEventListener("keydown", escapeHandler); setTimeout(openPopup, 1000); } if (document.readyState === "loading") { document.addEventListener( "DOMContentLoaded", initializeEilatVatPopup, { once: true } ); } else { initializeEilatVatPopup(); } })();