✕
إرسال الطلب الآن 🚀
const modal = document.getElementById('prescription-popup-modal'); const openBtn = document.getElementById('open-prescription-popup-btn'); const closeBtn = document.getElementById('close-prescription-popup');
if(openBtn) openBtn.addEventListener('click', (e) => { e.preventDefault(); modal.style.display = 'flex'; }); if(closeBtn) closeBtn.addEventListener('click', () => { modal.style.display = 'none'; });
document.getElementById('get-location-btn').addEventListener('click', () => { const status = document.getElementById('location-status'); navigator.geolocation.getCurrentPosition((pos) => { document.getElementById('customer_location').value = pos.coords.latitude + ',' + pos.coords.longitude; status.innerHTML = '✅ تم تحديد الموقع بنجاح!'; }, () => status.innerHTML = 'فشل تحديد الموقع.'); });
عرض 817–828 من أصل 1943 نتيجة