/* Add custom Js styles below */ document.addEventListener('DOMContentLoaded', function() { // الرابط الخاص بك const bookingLink = "https://echorabia.com/en/Edge%20&%20Historical%20Village%20%20(With%20group)/p2028002879/?lang=en"; // بناء هيكل النافذة المنبثقة const popupHTML = `
`; // إضافة النافذة إلى الصفحة document.body.insertAdjacentHTML('beforeend', popupHTML); const popup = document.getElementById('edgePopup'); // إظهار النافذة بعد ثانيتين من دخول المتجر setTimeout(() => { if (!sessionStorage.getItem('edgePopupShown')) { popup.style.display = 'flex'; } }, 2000); // إضافة ميزة الإغلاق عند النقر في أي مكان (الخلفية المعتمة) popup.addEventListener('click', function(event) { if (event.target === popup) { closeEdgePopup(); } }); }); // وظيفة الإغلاق وتخزين الحالة لعدم الإزعاج function closeEdgePopup() { const popup = document.getElementById('edgePopup'); if (popup) { popup.style.display = 'none'; sessionStorage.setItem('edgePopupShown', 'true'); } }