top of page
bottom of page
// Add this to your Wix page's custom code window.addEventListener('message', function(event) { if (event.data.action === 'scrollToTop') { window.scrollTo({ top: 0, behavior: 'smooth' }); } });