HOW CAN WE HELP YOU?
Please fill out the form below so we can help your business.
// Clear contact form after submit button
jQuery(document).ready(function($) {
$('#et_pb_contact_form_0').on('submit', function(event) { // Adjust selector if needed
// Prevent default form submission if you're handling it with AJAX
// event.preventDefault();
$(this).find('input, textarea, select').not(':button, :submit, :reset').val('');
});
// Force redirect even inside overlays
document.addEventListener('DOMContentLoaded', function () {
document.body.addEventListener('et_pb_contact_form_submit', function (e) {
window.location.href = 'https://agencywoo.com/thank-you/';
});
});
Recent Comments