Resizing an iframe based on content - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T18:57:23Z http://stackoverflow.com/feeds/question/153152 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content 18 Resizing an iframe based on content larssg 2008-09-30T14:05:11Z 2009-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#153160 0 Answer by Nick Berardi for Resizing an iframe based on content Nick Berardi 2008-09-30T14:06:14Z 2008-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#153187 0 Answer by Rory Fitzpatrick for Resizing an iframe based on content Rory Fitzpatrick 2008-09-30T14:12:16Z 2008-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#153196 0 Answer by Ólafur Waage for Resizing an iframe based on content Ólafur Waage 2008-09-30T14:13:07Z 2008-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#250275 1 Answer by Macho Matt for Resizing an iframe based on content Macho Matt 2008-10-30T14:07:20Z 2008-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>&lt;script type=”text/javascript”&gt; $(document).ready(function() { var theFrame = $(”#iFrameToAdjust”, parent.document.body); theFrame.height($(document.body).height() + 30); }); &lt;/script&gt; </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#250320 0 Answer by Joeri Sebrechts for Resizing an iframe based on content Joeri Sebrechts 2008-10-30T14:22:23Z 2008-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#362564 25 Answer by ConroyP for Resizing an iframe based on content ConroyP 2008-12-12T12:04:38Z 2008-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 |-&gt; www.bar.net/framed.html, which iframes |----&gt; 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>&lt;script&gt; // Resize iframe to full height function resizeIframe(height) { // "+60" is a general rule of thumb to allow for differences in // IE &amp; and FF height reporting, can be adjusted as required.. document.getElementById('frame_name_here').height = parseInt(height)+60; } &lt;/script&gt; &lt;iframe id='frame_name_here' src='http://www.bar.net/framed.html'&gt;&lt;/iframe&gt; </code></pre> <p>In <code>www.bar.net/framed.html</code>:</p> <pre><code>&lt;body onload="iframeResizePipe()"&gt; &lt;iframe id="helpframe" src='' height='0' width='0' frameborder='0'&gt;&lt;/iframe&gt; &lt;script type="text/javascript"&gt; 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+'&amp;cacheb='+Math.random(); } &lt;/script&gt; </code></pre> <p>Contents of <code>www.foo.com/helper.html</code>:</p> <pre><code>&lt;html&gt; &lt;!-- 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 --&gt; &lt;body onload="parentIframeResize()"&gt; &lt;script&gt; // 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 = "[\\?&amp;]"+name+"=([^&amp;#]*)"; var regex = new RegExp( regexS ); var results = regex.exec( window.location.href ); if( results == null ) return ""; else return results[1]; } &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content/701521#701521 1 Answer by Ahmy for Resizing an iframe based on content Ahmy 2009-03-31T15:15:00Z 2009-03-31T15:15:00Z <p>Try this code it will solve the problem completely and it's simple:</p> <pre><code>&lt;script language="JavaScript"&gt; &lt;!-- 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"; } //--&gt; &lt;/script&gt; &lt;IFRAME SRC="usagelogs/default.aspx" width="100%" height="200px" id="iframe1" marginheight="0" frameborder="0" onLoad="autoResize('iframe1');"&gt;&lt;/iframe&gt; </code></pre> http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content/1203608#1203608 0 Answer by evan for Resizing an iframe based on content evan 2009-07-29T23:18:40Z 2009-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#1274387 0 Answer by rbarc for Resizing an iframe based on content rbarc 2009-08-13T20:29:23Z 2009-08-13T21:33:54Z <p>Great code but does not always work with all types of Browser/Server types.</p>