homepage/_includes/iframe.html

20 lines
600 B
HTML
Raw Normal View History

2022-01-05 16:10:25 +01:00
<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>