Resizing an iframe based on content - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T18:57:23Zhttp://stackoverflow.com/feeds/question/153152http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content18Resizing an iframe based on contentlarssg2008-09-30T14:05:11Z2009-08-13T21:33:54Z
<p>I am working on an iGoogle-like application. Content from other applications (on other domains) is shown using iframes. </p>
<p>How do I resize the iframes to fit the height of the iframes' content?</p>
<p>I've tried to decipher the javascript Google uses but it's obfuscated, and searching the web has been fruitless so far.</p>
<p><strong>Update:</strong> Please note that content is loaded from other domains, so the same-origin policy applies.</p>
http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content/153160#1531600Answer by Nick Berardi for Resizing an iframe based on contentNick Berardi2008-09-30T14:06:14Z2008-09-30T14:06:14Z<p>TinyMCE does this and it is not obfuscated.</p>
http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content/153187#1531870Answer by Rory Fitzpatrick for Resizing an iframe based on contentRory Fitzpatrick2008-09-30T14:12:16Z2008-09-30T14:12:16Z<p>This is slightly tricky as you have to know when the iframe page has loaded, which is difficuly when you're not in control of its content. Its possible to add an onload handler to the iframe, but I've tried this in the past and it has vastly different behaviour across browsers (not guess who's the most annoying...). You'd probably have to add a function to the iframe page that performs the resize and inject some script into the content that either listens to load events or resize events, which then calls the previous function. I'm thinking add a function to the page since you want to make sure its secure, but I have no idea how easy it will be to do.</p>
http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content/153196#1531960Answer by Ólafur Waage for Resizing an iframe based on contentÓlafur Waage2008-09-30T14:13:07Z2008-09-30T14:13:07Z<p>Something on the lines of this i belive should work.</p>
<pre><code>parent.document.getElementById(iFrameID).style.height=framedPage.scrollHeight;
</code></pre>
<p>Load this with your body onload on the iframe content.</p>
http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content/250275#2502751Answer by Macho Matt for Resizing an iframe based on contentMacho Matt2008-10-30T14:07:20Z2008-11-04T03:10:48Z<p>The solution on <a href="http://www.phinesolutions.com/use-jquery-to-adjust-the-iframe-height.html" rel="nofollow">http://www.phinesolutions.com/use-jquery-to-adjust-the-iframe-height.html</a> works great (uses jQuery):</p>
<pre><code><script type=”text/javascript”>
$(document).ready(function() {
var theFrame = $(”#iFrameToAdjust”, parent.document.body);
theFrame.height($(document.body).height() + 30);
});
</script>
</code></pre>
<p>I don't know that you need to add 30 to the length... 1 worked for me.</p>
<p><b>FYI</b>: If you already have a "height" attribute on your iFrame, this just adds style="height: xxx". This might not be what you want.</p>
http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content/250320#2503200Answer by Joeri Sebrechts for Resizing an iframe based on contentJoeri Sebrechts2008-10-30T14:22:23Z2008-10-30T14:22:23Z<p>iGoogle gadgets have to actively implement resizing, so my guess is in a cross-domain model you can't do this without the remote content taking part in some way. If your content can send a message with the new size to the container page using typical cross-domain communication techniques, then the rest is simple.</p>
http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content/362564#36256425Answer by ConroyP for Resizing an iframe based on contentConroyP2008-12-12T12:04:38Z2008-12-12T12:04:38Z<p>We had this type of problem, but slightly in reverse to your situation - we were providing the iframed content to sites on other domains, so the <a href="http://en.wikipedia.org/wiki/Same_origin_policy" rel="nofollow">same origin policy</a> was also an issue. After many hours spent trawling google, we eventually found a (somewhat..) workable solution, which you may be able to adapt to your needs.</p>
<p>There is a way around the same origin policy, but it requires changes on both the iframed content and the framing page, so if you haven't the ability to request changes on both sides, this method won't be very useful to you, i'm afraid.</p>
<p>There's a browser quirk which allows us to skirt the same origin policy - javascript can communicate either with pages on it's own domain, or with pages it has iframed, but never pages in which it is framed, e.g. if you have:</p>
<pre><code> www.foo.com/home.html, which iframes
|-> www.bar.net/framed.html, which iframes
|----> www.foo.com/helper.html
</code></pre>
<p>then <code>home.html</code> can communicate with <code>framed.html</code> (iframed) and <code>helper.html</code> (same domain). </p>
<pre><code> Communication options for each page:
+-------------------------+-----------+-------------+-------------+
| | home.html | framed.html | helper.html |
+-------------------------+-----------+-------------+-------------+
| www.foo.com/home.html | N/A | YES | YES |
| www.bar.net/framed.html | NO | N/A | YES |
| www.foo.com/helper.html | YES | YES | N/A |
+-------------------------+-----------+-------------+-------------+
</code></pre>
<p><code>framed.html</code> can send messages to <code>helper.html</code> (iframed) but <em>not</em> <code>home.html</code> (child can't communicate cross-domain with parent).</p>
<p>The key here is that <code>helper.html</code> can receive messages from <code>framed.html</code>, and <strong>can also communicate</strong> with <code>home.html</code>. </p>
<p>So essentially, when <code>framed.html</code> loads, it works out it's own height, tells <code>helper.html</code>, which passes the message on to <code>home.html</code>, which can then resize the iframe in which <code>framed.html</code> sits. </p>
<p>The simplest way we found to pass messages from <code>framed.html</code> to <code>helper.html</code> was through a URL argument. To do this, <code>framed.html</code> has an iframe with <code>src=''</code> specified. When it's <code>onload</code> fires, it evaluates it's own height, and sets the src of the iframe at this point to <code>helper.html?height=N</code></p>
<p>There's an explanation <a href="http://wiki.developers.facebook.com/index.php/Cross_Domain_Communication" rel="nofollow">here</a> of how facebook handle it, which may be slightly clearer than mine above!</p>
<p><hr />
<strong>Code</strong></p>
<p>In <code>www.foo.com/home.html</code>, the following javascript code is required (this can be loaded from a .js file on any domain, incidentally..):</p>
<pre><code><script>
// Resize iframe to full height
function resizeIframe(height)
{
// "+60" is a general rule of thumb to allow for differences in
// IE & and FF height reporting, can be adjusted as required..
document.getElementById('frame_name_here').height = parseInt(height)+60;
}
</script>
<iframe id='frame_name_here' src='http://www.bar.net/framed.html'></iframe>
</code></pre>
<p>In <code>www.bar.net/framed.html</code>:</p>
<pre><code><body onload="iframeResizePipe()">
<iframe id="helpframe" src='' height='0' width='0' frameborder='0'></iframe>
<script type="text/javascript">
function iframeResizePipe()
{
// What's the page height?
var height = document.body.scrollHeight;
// Going to 'pipe' the data to the parent through the helpframe..
var pipe = document.getElementById('helpframe');
// Cachebuster a precaution here to stop browser caching interfering
pipe.src = 'http://www.foo.com/helper.html?height='+height+'&cacheb='+Math.random();
}
</script>
</code></pre>
<p>Contents of <code>www.foo.com/helper.html</code>:</p>
<pre><code><html>
<!--
This page is on the same domain as the parent, so can
communicate with it to order the iframe window resizing
to fit the content
-->
<body onload="parentIframeResize()">
<script>
// Tell the parent iframe what height the iframe needs to be
function parentIframeResize()
{
var height = getParam('height');
// This works as our parent's parent is on our domain..
parent.parent.resizeIframe(height);
}
// Helper function, parse param from request string
function getParam( name )
{
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[\\?&]"+name+"=([^&#]*)";
var regex = new RegExp( regexS );
var results = regex.exec( window.location.href );
if( results == null )
return "";
else
return results[1];
}
</script>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content/701521#7015211Answer by Ahmy for Resizing an iframe based on contentAhmy2009-03-31T15:15:00Z2009-03-31T15:15:00Z<p>Try this code it will solve the problem completely and it's simple:</p>
<pre><code><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>
</code></pre>
http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content/1203608#12036080Answer by evan for Resizing an iframe based on contentevan2009-07-29T23:18:40Z2009-07-29T23:18:40Z<p>there is a bug with this code. when used with firefox and safari, the height continues to grow as you click through the iframe. it doesn't occur in IE. Give it a shot and you'll see!</p>
http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content/1274387#12743870Answer by rbarc for Resizing an iframe based on contentrbarc2009-08-13T20:29:23Z2009-08-13T21:33:54Z<p>Great code but does not always work with all types of Browser/Server types.</p>