Last active
May 21, 2024 08:20
-
-
Save jamenlyndon/170af98d77d93a0df01c to your computer and use it in GitHub Desktop.
Resize iframe height to fit content (works cross domain)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type='text/javascript' src="js/jquery.min.js"></script> | |
<script type='text/javascript'> | |
// Size the parent iFrame | |
function iframeResize() { | |
var height = $('body').outerHeight(); // IMPORTANT: If body's height is set to 100% with CSS this will not work. | |
parent.postMessage("resize::"+height,"*"); | |
} | |
$(document).ready(function() { | |
// Resize iframe | |
setInterval(iframeResize, 1000); | |
}); | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<iframe src='example.html' id='edh-iframe'></iframe> | |
<script type='text/javascript'> | |
// Listen for messages sent from the iFrame | |
var eventMethod = window.addEventListener ? "addEventListener" : "attachEvent"; | |
var eventer = window[eventMethod]; | |
var messageEvent = eventMethod == "attachEvent" ? "onmessage" : "message"; | |
eventer(messageEvent,function(e) { | |
// If the message is a resize frame request | |
if (e.data.indexOf('resize::') != -1) { | |
var height = e.data.replace('resize::', ''); | |
document.getElementById('edh-iframe').style.height = height+'px'; | |
} | |
} ,false); | |
</script> |
Author
jamenlyndon
commented
Jan 16, 2023
via email
Change this line:
setInterval(iframeResize, 1000);
To this:
iframeResize();
…On Mon, 16 Jan 2023 at 21:09, Tainq ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
Hello!
Very useful script! I tried to use it for iframe google studio. This
works, but with one problem: the script loops and continues to increase the
height of the body indefinitely. How can I make the increase occur no more
than 1 or 2 times?
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/170af98d77d93a0df01c#gistcomment-4438432> or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACF37XCU5BGWZ7VKDBYX2WDWSUUAFBFKMF2HI4TJMJ2XIZLTSKBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DFQKSXMYLMOVS2I5DSOVS2I3TBNVS3W5DIOJSWCZC7OBQXE5DJMNUXAYLOORPWCY3UNF3GS5DZVRZXKYTKMVRXIX3UPFYGLK2HNFZXIQ3PNVWWK3TUUZ2G64DJMNZZDAVEOR4XAZNEM5UXG5FFOZQWY5LFVAZDKNJQGA2DMNFHORZGSZ3HMVZKMY3SMVQXIZI>
.
You are receiving this email because you authored the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment