Get in touch
Email:

mail@traversal.com

Visit Us:

78-80 Upper St Giles St. Norwich NR2 1LT United Kingdom.

Contact:

+44-255-366-88

pt> $(document).ready(function () { $("#c-frm").submit(function (event) { event.preventDefault(); debugger var formData = $(this).serialize(); var url = 'https://pyravistatours.com/umbraco/api/CustomApi/SendEmail_ContactForm?' + formData; // Replace with your server endpoint $('#submitBtn').prop('disabled', true); $.ajax({ type: 'GET', url: url, success: function (response) { Swal.fire({ title: "Thank You!", text: "Your message has been sent successfully!", icon: "success" }); }, error: function (error) { // Handle error - you can display an error message alert('An error occurred while sending the message.'); console.log(error); } }); }); }); }