import { fetch } from 'wix-fetch'; $w.onReady(function () { // Replace with your form ID $w("#travelPlannerForm").onWixFormSubmitted((event) => { const formData = event.formData; // Send to your Pipedream webhook fetch('https://eo1dss0ynom1mj.m.pipedream.net', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ destination: formData.destination, startDate: formData.startDate, endDate: formData.endDate, travelers: formData.travelers, budget: formData.budget, travelStyle: formData.travelStyle, interests: formData.interests, accommodation: formData.accommodation, email: formData.email, name: formData.name, timestamp: new Date().toISOString() }) }) .then(response => response.json()) .then(data => { console.log('Travel plan generated:', data); // You can redirect to a results page or show success message $w("#successMessage").show(); }) .catch(error => { console.error('Error:', error); $w("#errorMessage").show(); }); }); });
top of page
Desi Travel Geek
Home
Search
About Me
Gallery
Categories
Explore Cities
All Travel Blogs
Paris
Discover the wonders of this city
Greek Island
Discover the wonders of this city
Kyoto
Discover the wonders of this city
Morocco
Discover the wonders of this city
Blog
Travel Blogs Catagories
All Posts
Georgia 🇬🇪
Malta 🇲🇹
Croatia 🇭🇷
Travel Stories
Hikes
Cuisines
Germany 🇩🇪
Discovering Delightful Delicacies: Maltese Must-Try Vegetarian dishes!
Welcome, food enthusiasts and vegetarians, to a gastronomic journey like no other! Malta, a charming Mediterranean island brimming with...
Malta 🇲🇹
Dec 31, 2024
2 min read
Home
Search
About Me
Gallery
bottom of page