I need solution for auto adjust width height of iframe to fit with content in it, and the point is the content size (width, height) could be change after iframe loaded. I guess i need a event action when body size changed.

link|improve this question

68% accept rate
feedback

3 Answers

up vote 16 down vote accepted

Try this code it will solve the problem completely and it's simple:

<script language="JavaScript">
<!--
function autoResize(id){
    var newheight;
    var newwidth;

    if(document.getElementById){
        newheight=document.getElementById(id).contentWindow.document .body.scrollHeight;
        newwidth=document.getElementById(id).contentWindow.document .body.scrollWidth;
    }

    document.getElementById(id).height= (newheight) + "px";
    document.getElementById(id).width= (newwidth) + "px";
}
//-->
</script>

<IFRAME SRC="usagelogs/default.aspx" width="100%" height="200px" id="iframe1" marginheight="0" frameborder="0" onLoad="autoResize('iframe1');"></iframe>
link|improve this answer
Not standards compliant, but by far the most easy way to do this. – Pim Jager May 4 '09 at 9:39
I don't know what do u mean with Not standards compliant? – Ahmy May 4 '09 at 9:42
does it cross browser? – StoneHeart May 4 '09 at 10:15
3  
@StoneHeart: yes, it's cross browser. The code is non-standard compliant because of contentWindow property, which isn't defined in DOM spec. In DOM spec exists property called contentDocument, but Internet Explorer 6 (and 7?) doesn't support it. The contentWindow property can be used instead and it's implemented in all common browsers (Gecko, Opera, Webkit, IE). – Rafael May 4 '09 at 10:28
BTW. the scrollHeight property - IIRC - also isn't standard compliant, but is also supported by all common browsers. You can use offsetHeight or other properties instead, but scrollHeight gives best results – Rafael May 4 '09 at 10:37
show 1 more comment
feedback

There are some issues with browsers.
Here is a cross-browser solution with jQuery:

http://sonspring.com/journal/jquery-iframe-sizing

link|improve this answer
2  
The code has been moved here: github.com/house9/jquery-iframe-auto-height. – Oliver Feb 23 at 0:49
feedback

Here is a cross-browser solution if you don't want to use jQuery:

/**
 * Resizes the given iFrame width so it fits its content
 * @param e The iframe to resize
 */
function resizeIframeWidth(e){
    // Set width of iframe according to its content
    if (e.Document && e.Document.body.scrollWidth) //ie5+ syntax
        e.width = e.contentWindow.document.body.scrollWidth;
    else if (e.contentDocument && e.contentDocument.body.scrollWidth) //ns6+ & opera syntax
        e.width = e.contentDocument.body.scrollWidth + 35;
    else (e.contentDocument && e.contentDocument.body.offsetWidth) //standards compliant syntax – ie8
        e.width = e.contentDocument.body.offsetWidth + 35;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.