Why developers hate iframes? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T00:17:51Zhttp://stackoverflow.com/feeds/question/1081315http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081315/why-developers-hate-iframes6Why developers hate iframes?Amr ElGarhy2009-07-04T01:57:36Z2009-07-06T12:52:04Z
<p>While working with web developers i always hear from them that using iframes is something we must avoid as possible as we can, and so go and say its something bad, annoying and makes a lot of problems.</p>
<p>Also when i told my previous boss "not a developer" one day that i will use iframe, he looked at me as a bad developer :) </p>
<p>What i want to know, does iframes have a very bad history with web development?</p>
<p>Its a disaster?</p>
<p>In some cases i see that its a must to use iframes, saying that means i am a bad developer.</p>
<p>Or all of that because of its hard to deal with because of some security issues we must take case about while developing?</p>
<p>Please list your points if you hate it too or correct me if i am thinking the wrong way.</p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1081317#10813173Answer by Andrew Siemer for Why developers hate iframes?Andrew Siemer2009-07-04T01:59:55Z2009-07-04T01:59:55Z<p>iframes of today have a bad name because of iframe support in past browsers. Similar to VB.NET having a bad wrap due to VB6 history. I use them these days where needed...just keep in mind that it is possible for it to not work as you had planned every now and then and to account for that.</p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1081318#10813183Answer by Nosredna for Why developers hate iframes?Nosredna2009-07-04T02:00:10Z2009-07-04T02:00:10Z<p>I think people confuse iframes with HTML frames, and frames are pretty universally despised.</p>
<p>People use iframes all the time without even realizing it. If I recall correctly, TinyMCE uses iFrames.</p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1081323#10813231Answer by eed3si9n for Why developers hate iframes?eed3si9n2009-07-04T02:04:01Z2009-07-04T02:04:01Z<p>I guess because it goes against the whole html-describes-contents + css-does-the-visual-design fundamentalism. Also overuse of iframe is waste of performance since it's making separate calls to fetch the frame. If you think about it AJAX basically is like iframe, except it's trendy today (may not be in the future).</p>
<p>Security wise, it kinda is problematic because the user could load total crap from other domain without even knowing.</p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1081324#10813240Answer by Dave Markle for Why developers hate iframes?Dave Markle2009-07-04T02:04:26Z2009-07-04T02:04:26Z<p>Because they can be tough to work with when it comes to security. A well-behaved, modern browser does not let you write code in a iFrame which manipulates elements in other iFrames on the page. This can make certain techniques tough to achieve sometimes.</p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1081329#10813299Answer by Emil H for Why developers hate iframes?Emil H2009-07-04T02:08:22Z2009-07-04T02:08:22Z<p>As Nosredna said, it's probably because people confuse them with frames, and there are actually a lot of valid arguments against frames. Some of them aren't applicable to iframes, but then again some of them are. </p>
<p>The most striking such issue is probably that of deep linking: It's true that iframes suffer from this to a lesser extent than frames, but if you allow your users to navigate between different pages in the iframe, it will be a problem. There's also a couple of usability problems that you'll have to watch out for. The most common examble is that of double scrollbars, which I personally find incredibly annoying.</p>
<p>I tend to avoid iframes, mostly because I find it to be an unelegant solution. I've found that when I actually sit down and think about it, there's almost always a better solution. Despite that I also believe that there is a place for them. It's the goto of the web world: Just because it has a history of being misused, it has become consensus that it shouldn't ever be used. That really isn't the case here, but I do believe that you should think twice before using iframes.</p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1081330#108133016Answer by Christoph for Why developers hate iframes?Christoph2009-07-04T02:09:42Z2009-07-04T02:09:42Z<p>Iframes can have similar issues as frames and inconsiderate use of <code>XMLHttpRequest</code>: They break the one-document-per-URL paradigm, which is essential for the proper functioning of the web (think bookmarks, deep-links, search engines, ...).</p>
<p>If you're creating a web application, use whatever technique you want to (including frames, flash, applets, $whatever). If you're creating an actual, informational web page, stick to frameless HTML, CSS and unobstrusive JavaScripts and keep in mind that the page should still be usable with scripting disabled.</p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1081343#10813435Answer by ars for Why developers hate iframes?ars2009-07-04T02:20:20Z2009-07-04T02:20:20Z<p>One reason is security -- iframe injection attacks were pretty common. See this Ars Technica page for a description:</p>
<p><a href="http://arstechnica.com/security/news/2008/03/ongoing-iframe-attack-proving-difficult-to-kill.ars" rel="nofollow">http://arstechnica.com/security/news/2008/03/ongoing-iframe-attack-proving-difficult-to-kill.ars</a></p>
<p>and another page that summarizes some vulnerabilities (I don't know how many of these are valid for the current crop of browsers, but the article's not that old):</p>
<p><a href="http://www.thespanner.co.uk/2007/10/24/iframes-security-summary/" rel="nofollow">http://www.thespanner.co.uk/2007/10/24/iframes-security-summary/</a></p>
<p>On the other hand, they enable cross domain communication, and are used quite commonly by "ajaxy" webapps:</p>
<p><a href="http://softwareas.com/cross-domain-communication-with-iframes" rel="nofollow">http://softwareas.com/cross-domain-communication-with-iframes</a></p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1081391#10813910Answer by Troy Hunt for Why developers hate iframes?Troy Hunt2009-07-04T02:59:19Z2009-07-04T02:59:19Z<p>One problem is that they have their own page lifecycle so interactivity between host and iframe child is limited (query string, session variables or JS). An alternative would be to consider using a scrolling div.</p>
<p>Another problem is printing. The output of an iframe (or a scrolling div for that matter) can be unpredictable and varies wildly between different browsers.</p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1081473#10814732Answer by geowa4 for Why developers hate iframes?geowa42009-07-04T04:19:49Z2009-07-04T04:19:49Z<p>HTML elements should not have behavior.</p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1082317#10823171Answer by Joeri Sebrechts for Why developers hate iframes?Joeri Sebrechts2009-07-04T14:39:47Z2009-07-04T14:39:47Z<p>One reason they're rejected is because they're inherently slow. By the time the iframe begins loading its host page is already in an advanced stage of the loading pipeline. Iframes and snappy browsing are almost impossible to combine.</p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1082506#10825060Answer by Partial for Why developers hate iframes?Partial2009-07-04T16:15:32Z2009-07-04T16:15:32Z<p>You shouldn't use iframes for design. CSS does a way better job for the same thing and allows a lot more liberty too.</p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1082516#10825164Answer by marcc for Why developers hate iframes?marcc2009-07-04T16:24:43Z2009-07-04T16:24:43Z<p>I wanted to add that <em>most of the time</em>, iframes don't help SEO of a page either. Googlebot doesn't put the content of an iframe on the page.</p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1082530#10825301Answer by Philippe Leybaert for Why developers hate iframes?Philippe Leybaert2009-07-04T16:32:27Z2009-07-04T16:32:27Z<p>There is one situation where iframes are (almost) required: when the contents of the iframe is in a different domain, and you have to perform authentication or check cookies that are bound to that domain. It actually prevents security problems instead of creating them.</p>
<p>For example, if you're writing a kind of plugin that can be used on any website, but the plugin has to authenticate on another domain, you could create a seamless iframe that runs and authenticates on the external domain. </p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1083030#10830300Answer by thezachperson31 for Why developers hate iframes?thezachperson312009-07-04T21:48:16Z2009-07-04T21:48:16Z<p>It's bad practice, and a lazy way of writing good (read: does what the customer wanted) code. A search for "iframe bad" on Google (without quotes) brings up many forum discussions on the topic. If you really need to bring in external content, use AJAX. Better yet, don't do it at all. </p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1083053#10830531Answer by Amr ElGarhy for Why developers hate iframes?Amr ElGarhy2009-07-04T22:09:50Z2009-07-04T22:09:50Z<p>Also found these questions which should complete the answer:</p>
<p><a href="http://stackoverflow.com/questions/449321/why-do-some-people-say-iframes-are-pure-evil">Why Do Some People Say Iframes Are Pure Evil?</a></p>
<p><a href="http://stackoverflow.com/questions/362730/are-iframes-considered-bad-practice">Are iframes considered ‘bad practice’?</a></p>
<p><a href="http://stackoverflow.com/questions/96748/are-iframes-a-terrible-idea">Are iframes a terrible idea?</a></p>
http://stackoverflow.com/questions/1081315/why-developers-hate-iframes/1086790#10867900Answer by JonoW for Why developers hate iframes?JonoW2009-07-06T12:52:04Z2009-07-06T12:52:04Z<p>I think IFrames have their place. I wouldn't use them on front-end/public-facing web-sites due to problems with SEO etc. For an internal/back-end web-app I think they are useful when you need to isolate the styling of a particular section from the rest of the page, e.g. a report viewer or an HTML editor, where inherited styles from the parent page could cause a problem if all the content was in one document. My 2c...</p>