معلومات الاتصال
We're Here to Help
If you have any questions, need assistance with your order, or simply want to get in touch, our customer care team is always happy to help.
document.getElementById('whatsapp-link').addEventListener('click', function(e) { e.preventDefault(); var phone = "971501234567"; var text = encodeURIComponent("Hello, I want to contact you"); var whatsappWebURL = "https://wa.me/" + phone + "?text=" + text; // Try to open WhatsApp app only if browser supports it // Some WebViews will throw unknown URL scheme if app is not installed try { window.location.href = "whatsapp://send?phone=" + phone + "&text=" + text; } catch (err) { console.log("WhatsApp app not available, fallback to web"); } // Always fallback to WhatsApp Web after small delay setTimeout(function() { window.open(whatsappWebURL, "_blank"); }, 500); });