document.addEventListener("turbolinks:load", function () { var form = document.getElementById('contact-us-form'); form.addEventListener('submit', function (e) { document.getElementById("contact-us-form-submit-button").classList.add('is-hidden'); document.getElementById("contact-us-form-loading-state").classList.remove('is-hidden'); }); form.addEventListener('tinyforms:submitted', function(e) { form.classList.add('is-hidden'); document.getElementById("contact-us-form-success-message").classList.remove('is-hidden'); }) });