const bookButton = document.querySelector('[data-testid="671fd49b5f0baa990e07823b-book"]');
const iframe = document.querySelector('iframe#glofox_1');
if (bookButton && iframe && window.innerWidth <= 768) { // Ensure this runs only on mobile
bookButton.addEventListener('click', function() {
// Send message to iframe to scroll to the top
iframe.contentWindow.postMessage('scrollToTop', 'https://app.glofox.com');
});
}
window.addEventListener('message', function(event) {
if (event.origin === 'https://app.glofox.com') {
if (event.data === 'scrollToTop') {
document.documentElement.scrollTop = 0; // Scroll to the top of the iframe
}
}
});