Liyan Events - Quotation Form
Liyan Events Vijayawada
Pipula Road, Ajit Singh Nagar — Contact: 9494562646
document.getElementById("quoteForm").addEventListener("submit", function(e) {
e.preventDefault();
const form = this;
const data = new FormData(form);
fetch(form.action, {
method: "POST",
body: data,
headers: {
'Accept': 'application/json'
}
}).then(response => {
if (response.ok) {
window.location.href = "https://liyanevents.blogspot.com/p/thank-you-liyan-events-vijayawada.html";
} else {
alert("Submission failed. Please try again.");
}
}).catch(error => {
alert("There was a problem submitting the form.");
});
});
Comments
Post a Comment