|
|
|
@ -174,7 +174,7 @@ aria-label="festival">
|
|
|
|
|
<div class="ghwhyus"> <a id="scrollAnchor"></a>
|
|
|
|
|
|
|
|
|
|
<p class="contactus">Start planning your tailor-made tour now. Your 1:1 travel consultant will reply within 1 working day.</p>
|
|
|
|
|
<form action="/forms/inquiry_save" method="post">
|
|
|
|
|
<form action="/forms/inquiry_save" id="bottomInquiryForm" method="post">
|
|
|
|
|
<div class="InquiryFormBox">
|
|
|
|
|
<div class="FieldSet">
|
|
|
|
|
<textarea id="additionalrequirements" name="additional_requirements"
|
|
|
|
@ -451,7 +451,7 @@ aria-label="festival">
|
|
|
|
|
<input id="url" name="url" type="hidden">
|
|
|
|
|
<!--@INPUT_PRODUCT_CODE@-->
|
|
|
|
|
<input id="sourcetype" name="sourcetype" type="hidden" value="32113">
|
|
|
|
|
<button class="sendButton" type="submit">
|
|
|
|
|
<button class="sendButton" type="submit" id="bottomFormBtn">
|
|
|
|
|
Send My Inquiry
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
@ -496,6 +496,14 @@ aria-label="festival">
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var formEle = document.getElementById('bottomInquiryForm');
|
|
|
|
|
var submitBtn = document.getElementById('bottomFormBtn');
|
|
|
|
|
formEle.addEventListener('submit', function(evt) {
|
|
|
|
|
evt.preventDefault();
|
|
|
|
|
formEle.submit();
|
|
|
|
|
submitBtn.innerText = "Submitted successfully";
|
|
|
|
|
});
|
|
|
|
|
})();
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|