document.addEventListener('DOMContentLoaded', function() { let frame = document.querySelector('iframe#simulator'); let doc = frame.contentWindow.document; frame.style.width = '100%'; frame.style.border = 'none'; frame.setAttribute('scrolling', 'no'); // Insert HTML code in the iframe doc.open(); doc.write((window)['simulator.html']); doc.close(); // Load iframe specific CSS doc.head.innerHTML += (window)['simulator-in-iframe.css']; // Add script inside frame let script = doc.createElement('script'); script.type = "text/javascript"; script.innerText = (window)['app.js']; doc.body.appendChild(script); setInterval(() => { frame.height = Math.max(doc.body.scrollHeight, 700) + 'px'; }, 100); });