La Smorfia // Script da aggiungere nella pagina WordPress function resizeIframe() { const iframe = document.getElementById(‘iframe1’); iframe.onload = function() { try { const iframeDoc = iframe.contentDocument || iframe.contentWindow.document; const height = iframeDoc.body.scrollHeight; iframe.style.height = height + ‘px’; } catch(e) { console.log(‘Cannot access iframe content’); } }; } // Esegui quando la pagina è caricata document.addEventListener(‘DOMContentLoaded’, resizeIframe);