jquery get height of iframe content when loaded jquery get height of iframe content when loaded jquery jquery

jquery get height of iframe content when loaded


ok I finally found a good solution:

$('iframe').load(function() {    this.style.height =    this.contentWindow.document.body.offsetHeight + 'px';});

Because some browsers (older Safari and Opera) report onload completed before CSS renders you need to set a micro Timeout and blank out and reassign the iframe's src.

$('iframe').load(function() {    setTimeout(iResize, 50);    // Safari and Opera need a kick-start.    var iSource = document.getElementById('your-iframe-id').src;    document.getElementById('your-iframe-id').src = '';    document.getElementById('your-iframe-id').src = iSource;});function iResize() {    document.getElementById('your-iframe-id').style.height =     document.getElementById('your-iframe-id').contentWindow.document.body.offsetHeight + 'px';}


The less complicated answer is to use .contents() to get at the iframe. Interestingly, though, it returns a different value from what I get using the code in my original answer, due to the padding on the body, I believe.

$('iframe').contents().height() + 'is the height'

This is how I've done it for cross-domain communication, so I'm afraid it's maybe unnecessarily complicated. First, I would put jQuery inside the iFrame's document; this will consume more memory, but it shouldn't increase load time as the script only needs to be loaded once.

Use the iFrame's jQuery to measure the height of your iframe's body as early as possible (onDOMReady) and then set the URL hash to that height. And in the parent document, add an onload event to the iFrame tag that will look at the location of the iframe and extract the value you need. Because onDOMReady will always occur before the document's load event, you can be fairly certain the value will get communicated correctly without a race condition complicating things.

In other words:

...in Help.php:

var getDocumentHeight = function() {    if (location.hash === '') { // EDIT: this should prevent the retriggering of onDOMReady        location.hash = $('body').height();         // at this point the document address will be something like help.php#1552    }};$(getDocumentHeight);

...and in the parent document:

var getIFrameHeight = function() {    var iFrame = $('iframe')[0]; // this will return the DOM element    var strHash = iFrame.contentDocument.location.hash;    alert(strHash); // will return something like '#1552'};$('iframe').bind('load', getIFrameHeight );


I found the following to work on Chrome, Firefox and IE11:

$('iframe').load(function () {    $('iframe').height($('iframe').contents().height());});

When the Iframes content is done loading the event will fire and it will set the IFrames height to that of its content. This will only work for pages within the same domain as that of the IFrame.