Find a certified ToeFX Partner Clinic near you using our map or list below.
Title
Address
Link
Submit Your Case Now
Get Study Summary
Become a Partner Clinic
Book Free Consultation
document.addEventListener('DOMContentLoaded', () => {
// Select all Bricks forms on the page
const forms = document.querySelectorAll('form.bricks-form');
forms.forEach((form) => {
// Listen for the Bricks form submit event
form.addEventListener('submit', (e) => {
// You can use a small timeout to allow Bricks' AJAX to process
setTimeout(() => {
console.log('Form submitted successfully!');
}, 100); // 100ms delay is enough to ensure submission happened
});
});
});