top of page
marcouxbetty328marcouxbetty328

marcouxbetty328

More actions

Profile

Join date: Apr 22, 2026

There’s nothing to show here yet

When this member adds info about themselves, you’ll see it here.

bottom of page
window.addEventListener('message', function(event) { if (!event.data || typeof event.data !== 'object') return; if (event.data.type !== 'setHeight' || !event.data.height) return; // Find which iframe sent this message by matching its contentWindow var iframes = document.querySelectorAll('iframe[name="htmlComp-iframe"]'); iframes.forEach(function(iframe) { if (iframe.contentWindow === event.source) { // Walk up to the Wix container div and override the fixed height var container = iframe.closest('[id^="comp-"]'); if (container) { container.style.height = event.data.height + 'px'; } iframe.style.height = event.data.height + 'px'; } }); });