from Australia and spent some time exploring how it works. The site feels quite straightforward, with a clean layout that makes it easy to find different sections without confusion. Everything loads at a reasonable speed, and the mobile version works smoothly as well, which is convenient for quick access. The overall experience seems simple and functional, with no major issues so far.
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';
}
});
});
I recently checked out
from Australia and spent some time exploring how it works. The site feels quite straightforward, with a clean layout that makes it easy to find different sections without confusion. Everything loads at a reasonable speed, and the mobile version works smoothly as well, which is convenient for quick access. The overall experience seems simple and functional, with no major issues so far.