Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

1 thought on “Hello world!”

Leave a Comment

Your email address will not be published. Required fields are marked *

document.addEventListener("click", function(e){ if(e.target.classList.contains("yes-btn") || e.target.classList.contains("no-btn")){ // find the current form const form = e.target.closest(".forminator-custom-form"); // find next button inside this form const nextBtn = form.querySelector(".forminator-button-next"); // find submit button const submitBtn = form.querySelector(".forminator-button-submit"); // if next exists -> go next if(nextBtn){ nextBtn.click(); return; } // if no next -> submit form if(submitBtn){ submitBtn.click(); } } });
Scroll to Top