// Try to select the custom cursor (most Framer cursors have pointer-events: none) const customCursor = document.querySelector('[style*="pointer-events: none"]'); const iframe = document.querySelector('iframe'); if (customCursor && iframe) { iframe.addEventListener('mouseover', () => { customCursor.style.opacity = 0; // or customCursor.style.display = 'none'; }); iframe.addEventListener('mouseleave', () => { customCursor.style.opacity = 1; // or customCursor.style.display = ''; }); }