top of page

افضل خدمة

سرعة

احنا نضمن لك السرعة و الوصل باسرع  وقت

امان

نسيت شى او تريد اطفالك  يوصلون فد مكان و لا  يهمك كل شى يمنا

اوفر

اسعارنا افضل و ارخص و تكسياتنا كلها حديثة

bottom of page
$w.onReady(function () { console.log("Custom code loaded!"); $w("#button49").onClick(() => { console.log("Button clicked!"); // Get dropdown values let fromLocation = $w("#dropdown1").value; let toLocation = $w("#dropdown1DAC1286").value; console.log("From Location:", fromLocation); console.log("To Location:", toLocation); // Query the collection wixData.query("Import 81") .eq("From", fromLocation) .eq("To", toLocation) .find() .then((results) => { console.log("Query results:", results.items); // Debug: Show all results if (results.items.length > 0) { let fare = results.items[0].Price; console.log("Fare found:", fare); // Create WhatsApp message let whatsappMessage = `اطلب تكسي من: *${fromLocation}* إلى: *${toLocation}* السعر: *$${fare}* شكراً`; console.log("Encoded message:", encodeURIComponent(whatsappMessage)); // Debug: Check encoding // Create WhatsApp link let whatsappLink = `https://wa.me/+9647700095529?text=${encodeURIComponent(whatsappMessage)}`; console.log("WhatsApp Link:", whatsappLink); // Test link directly window.location.href = whatsappLink; // Fallback if window.open fails window.open(whatsappLink, "_blank"); } else { console.error("No fare found for:", fromLocation, "->", toLocation); $w("#text33").text = "لم يتم العثور على سعر للوجهات المحددة."; } }) .catch((error) => { console.error("Query error:", error); }); }); });