We love to get your feedback. You can share with us your thoughts and ideas for improvement in the field below, or give us a review on Trustpilot and TripAdvisor
( function () {
const contact_forms = document.getElementsByClassName(‘contact-form’);
for ( const form of contact_forms ) {
form.onsubmit = function() {
const buttons = form.getElementsByTagName(‘button’);
for( const button of buttons ) {
button.setAttribute(‘disabled’, true);
}
}
}
} )();