Thank you for your appointment request
Mandana will contact you within 24 hours to confirm booking details and confirmation
// On the parent page window.addEventListener('message', function(event) { // Ensure the message is from the expected origin (Acuity) for security if (event.origin === 'https://acuityscheduling.com' || event.origin.includes('acuityscheduling.com')) { // Check if the message contains the expected event if (event.data && event.data.event === 'acuityFormLoaded') { // Push the data to the dataLayer window.dataLayer = window.dataLayer || []; window.dataLayer.push({ event: 'acuity_form_loaded', form_name: event.data.formName || 'Acuity Form', // Add any other data passed from the iframe }); } } });
Mandana will contact you within 24 hours to confirm booking details and confirmation