vote up 0 vote down star

Duplicates: Are iframes considered bad practice

Are iframes a terrible idea


Personally, I've always considered Iframes to be just fine when used responsibly. A lot of people tend to frown on iframes, without explanation. I have created some very simple and friendly user experiences using light-box style Iframes and such. So, can someone explain to me why they get a bad rep?

flag

69% accept rate
stackoverflow.com/questions/96748/… – George Stocker Jan 16 at 2:41
Why do some people use ridiculous hyperbole like "pure evil" to describe inanimate objects like iframes...and sql cursors? – Steven A. Lowe Jan 16 at 3:53
If you ask that question for real, be sure to CW it. :P – EBGreen Jan 16 at 5:31

closed as exact duplicate by EBGreen Jan 16 at 2:42

5 Answers

vote up 3 vote down

The thing is that really the only way to implement AJAX-ish file uploads without flash or java is by using iframes. I will stop using iframes when you will be able to upload a file with pure AJAX.

link|flag
vote up 0 vote down

I think it harkens back to IE4 when Microsoft introduced DHTML and DHTML behaviors as well as IFRAME. They were not standards and even though they were good ideas in practice, they got a bad name because they were outside the standards body and part of the evil plan of Microsoft to kill off Netscape.

Truth be told, from my perspective as a web developer from that era, Microsoft won the browser battle not through bundling but because IE4 created such forward leaning tools like DHTML and IFRAME...they won because IE4 was a better browser.

link|flag
vote up 0 vote down

Perhaps developers call it evil when they try to control style and behavior aspects of the iframe once loaded in a page. Its not exactly a seamless experience trying to control the behavior of your iframes dom using javascript as it can cause headaches. If you dont maintain the page the iframe is pointing to, and it changes, then your page may break and look messy.

that being said, ive never had too much trouble with them.

link|flag
vote up 0 vote down

Frame sets are annoying, which might be where iframes originally got their evil persona from. In general, iframes are not bad at all. But with the widespead use of AJAX you have to consider if the iframe is really the best way to gather data and display it from another web page.

link|flag
In one case, we transfer to a banking application where they make payments (leaving the collection of credit card numbers and subsequent security risk out of our hands), and then return when they are done. It's fabulous. – Josh Stodola Jan 16 at 2:57

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