Æ IDAA
Home
{@render children?.()}
1500} onclick={() => { log_lvl = 1; if (log_lvl) { console.log(`Scroll to top button clicked. scroll_y: ${scroll_y} scrollTop: ${scroll_container().scrollTop}`, scroll_container()); // document.getElementById('ae_idaa')?.scrollTo(0, 0); // document.documentElement?.scrollTo(0, 0); // document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera // document.body.scrollTop = 0; // For Safari } // var is_safari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent); if (is_safari) { console.log('Safari detected, not using smooth scroll to top.'); document.getElementById('ae_idaa')?.scrollTo(0, 0); if ($ae_loc?.iframe) { // If in iframe, we need to send a message to the parent window to scroll to top console.log('In Safari iframe, sending message to parent window to scroll to top as well'); window.parent.postMessage({'scroll_to': 0}, "*"); // This should be in pixels } } else { console.log('Not Safari, using smooth scroll to top'); document.getElementById('ae_idaa')?.scrollTo({ top: 0, behavior: 'smooth' }); window.parent.postMessage({'scroll_to': 0}, "*"); // This should be in pixels } }} title="Scroll to top" >
Scroll to Top