vote up 6 vote down star
3

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.

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 :)

What i want to know, does iframes have a very bad history with web development?

Its a disaster?

In some cases i see that its a must to use iframes, saying that means i am a bad developer.

Or all of that because of its hard to deal with because of some security issues we must take case about while developing?

Please list your points if you hate it too or correct me if i am thinking the wrong way.

flag

16 Answers

vote up 3 vote down check

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.

link|flag
vote up 16 vote down

Iframes can have similar issues as frames and inconsiderate use of XMLHttpRequest: They break the one-document-per-URL paradigm, which is essential for the proper functioning of the web (think bookmarks, deep-links, search engines, ...).

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.

link|flag
1  
I agree with that. RIAs are going to be JavaScript-heavy. A web page in the traditional sense should work with JS turned off. – Nosredna Jul 4 at 2:14
Doesn't it depend on exactly what it is you're 'iframe'ing? The side-effects of including an entire page in an iframe are quite different from those that arise when including a 'widget' or navigation element. – Bobby Jack Jul 7 at 13:53
Iframes are a must when you're building something that must not be changed by the current page CSS style. – vsync Aug 24 at 16:37
vote up 9 vote down

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.

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.

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.

link|flag
vote up 5 vote down

One reason is security -- iframe injection attacks were pretty common. See this Ars Technica page for a description:

http://arstechnica.com/security/news/2008/03/ongoing-iframe-attack-proving-difficult-to-kill.ars

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):

http://www.thespanner.co.uk/2007/10/24/iframes-security-summary/

On the other hand, they enable cross domain communication, and are used quite commonly by "ajaxy" webapps:

http://softwareas.com/cross-domain-communication-with-iframes

link|flag
vote up 4 vote down

I wanted to add that most of the time, iframes don't help SEO of a page either. Googlebot doesn't put the content of an iframe on the page.

link|flag
Nice important point – Amr ElGarhy Jul 4 at 22:03
vote up 3 vote down

I think people confuse iframes with HTML frames, and frames are pretty universally despised.

People use iframes all the time without even realizing it. If I recall correctly, TinyMCE uses iFrames.

link|flag
vote up 2 vote down

HTML elements should not have behavior.

link|flag
vote up 1 vote down

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).

Security wise, it kinda is problematic because the user could load total crap from other domain without even knowing.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

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.

link|flag
vote up 1 vote down

Also found these questions which should complete the answer:

Why Do Some People Say Iframes Are Pure Evil?

Are iframes considered ‘bad practice’?

Are iframes a terrible idea?

link|flag
vote up 0 vote down

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.

link|flag
1  
the most important security mechanism in browsers is the same-origin-policy: as long as the documents are available under the same domain, there's nothing wrong with cross-frame scripting – Christoph Jul 4 at 2:11
vote up 0 vote down

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.

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.

link|flag
vote up 0 vote down

You shouldn't use iframes for design. CSS does a way better job for the same thing and allows a lot more liberty too.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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...

link|flag

Your Answer

Get an OpenID
or

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