top of page
bottom of page
import wixWindow from 'wix-window'; $w.onReady(function () { $w("#contactForm").onAfterSave(() => { wixWindow.openLightbox("SuccessMessage") // or whatever you do on submit .then(() => { // Trigger Google Ads conversion const script = document.createElement("script"); script.innerHTML = ` gtag('event', 'conversion', { 'send_to': 'AW-16974315749/vY4JCKi_vbMaEOWB_p0_', 'value': 1.0, 'currency': 'AUD' }); `; document.head.appendChild(script); }); }); });