homepage/_includes/iframe.html
Gaspard Jankowiak 51248b57d3 [exos] try pluto
2022-01-05 16:19:16 +01:00

19 lines
600 B
HTML

<iframe id="iframe" style="width:100%" src="{{ include.src }}"></iframe>
<script>
// Selecting the iframe element
var frame = document.getElementById("iframe");
// Adjusting the iframe height onload event
frame.onload = function()
// function execute while load the iframe
{
// set the height of the iframe as
// the height of the iframe content
setTimeout(function() {
frame.style.height = frame.contentWindow.document.body.scrollHeight + 'px';
console.log(frame.contentWindow.document.body.scrollHeight + 'px');
}, 1000);
}
</script>