$(document).ready(function() { $('#contact-form').on('submit', function(e) { e.preventDefault(); // 1706 - Implement Google captcha if (grecaptcha && grecaptcha.getResponse().length === 0) { $('.g-recaptcha >div').css('border', '1px solid red') setTimeout(function() { $('.g-recaptcha >div').css('border', '0px') }, 3000) return false } if ($(this).parsley().isValid()) { $.ajax({ type: "POST", url: "/send-email", data: $("#contact-form").serialize(), // serializes the form's elements. beforeSend: function() { $(".form-button").html('SENDING..'); }, success: function(data) { $(".form-button").html('SUBMIT'); if (data === 'success') { $("#contact-form").hide(); //$(".response").html("Email has been sent, successful endeavours team will contact you as soon as possible!"); $(".response").html("Thanks, we have received your enquiry. A member of the Contactpoint team will be in contact shortly."); } } }); } }) $('#booking-form').on('submit', function(e) { e.preventDefault(); // 1706 - Implement Google captcha if (grecaptcha && grecaptcha.getResponse().length === 0) { $('.g-recaptcha >div').css('border', '1px solid red') setTimeout(function() { $('.g-recaptcha >div').css('border', '0px') }, 3000) return false } if ($(this).parsley().isValid()) { $.ajax({ type: "POST", url: "/send-email", data: $("#booking-form").serialize(), // serializes the form's elements. beforeSend: function() { $(".form-button").html('SENDING..'); }, success: function(data) { $(".form-button").html('SUBMIT'); if (data === 'success') { $("#booking-form").hide(); //$(".response").html("Email has been sent, successful endeavours team will contact you as soon as possible!"); $(".response").html("Thanks, we have received your enquiry. A member of the Contactpoint team will be in contact shortly."); } } }); } }) })