`; // ── ساخت iframe ایزوله ────────────────────────────────────────── const iframe = document.createElement('iframe'); iframe.style.cssText = 'width:100%;border:none;display:block;min-height:900px;'; iframe.setAttribute('scrolling', 'no'); iframe.setAttribute('frameborder', '0'); document.getElementById('calc-host').appendChild(iframe); const doc = iframe.contentDocument || iframe.contentWindow.document; doc.open(); doc.write(HTML); doc.close(); // ── تنظیم ارتفاع خودکار ────────────────────────────────────────── function resizeIframe() { try { const h = iframe.contentDocument.body.scrollHeight; if (h > 200) iframe.style.height = h + 'px'; } catch(e) {} } iframe.addEventListener('load', resizeIframe); setInterval(resizeIframe, 800); })();