An `iframe` is an HTML element that creates an "inline frame" within a document.
154
votes
13answers
70k views
Resizing an iframe based on content
I am working on an iGoogle-like application. Content from other applications (on other domains) is shown using iframes.
How do I resize the iframes to fit the height of the iframes' content?
I've ...
140
votes
18answers
21k views
Frame Buster Buster … buster code needed
Let's say you don't want other sites to "frame" your site in an <iframe>:
<iframe src="http://yourwebsite.com"></iframe>
So you insert anti-framing, frame busting JavaScript into ...
126
votes
11answers
88k views
Remove border from IFrame
How do I remove the border from an IFrame embedded in my web app? An example of the IFrame is:
<IFRAME src="myURL" width="300" height="300">Browser not compatible. </IFRAME>
I would ...
114
votes
2answers
9k views
How do Google+ +1 widgets break out of their iframe?
Somehow, hovering over a Google+ plus-one widget can introduce a tooltip-type deal that is clearly larger than the <iframe> element in which it is contained. I’ve inspected the DOM to confirm ...
111
votes
14answers
94k views
Invoking javascript in iframe from parent page
Basically, I have an iframe embedded in a page and the iframe has some javascript routines I need to invoke from the parent page.
Now the opposite is quite simple as you only need to call ...
99
votes
10answers
182k views
How to apply CSS to iFrame?
I have simple page that has some iFrame sections (to display RSS links). How can I apply the same CSS format for the main page to the page displayed in the iFrame?
91
votes
7answers
90k views
jQuery/JavaScript: accessing contents of an iframe
I would like to manipulate the html inside an iframe using jquery.
I thought I'd be able to do this by setting the context of the jQuery function to be the document of the iframe, something like:
...
59
votes
4answers
63k views
How to write this in jQuery “window.parent.document.getElementById('parentPrice').innerHTML”?
I have an iframe and I wrote this code
window.parent.document.getElementById('parentPrice').innerHTML
to access parent element. How to get the same result using jquery?
UPDATE: Or how to access ...
52
votes
5answers
132k views
jQuery .ready in a dynamically inserted iframe
We are using jQuery thickbox to dynamically display an iframe when someone clicks on a picture. In this iframe, we are using galleria a javascript library to display multiple pictures.
The problem ...
47
votes
8answers
15k views
Are iframes considered 'bad practice'?
Somewhere along the line I picked up the notion that using iframes is 'bad practice'.
Is this true? What are the pros/cons of using them?
45
votes
5answers
24k views
Youtube iframe wmode issue
Using javascript with jQuery, I am adding an iframe with a youtube url to display a video on a website however the embed code that gets loaded in the iframe from youtube doesnt have wmode="Opaque", ...
36
votes
7answers
16k views
How to identify if a webpage is being loaded inside an iframe or directly into the browser window?
I am writing an iframe based facebook app. Now I want to use the same html page to render the normal website as well as the canvas page within facebook. I want to know if I can determine whether the ...
35
votes
3answers
42k views
35
votes
11answers
45k views
Javascript callback when IFRAME is finished loading?
I need to execute a callback when an IFRAME has finished loading. I have no control over the content in the IFRAME, so I can't fire the callback from there.
This IFRAME is programmaticly created, and ...
33
votes
15answers
51k views
How to auto-size an iFrame?
I'm loading an iFrame and want the parent to automatically change the height based upon the height of the iFrame's content.
To simply things, all pages belong to the same domain, so I shouldn't run ...
32
votes
14answers
15k views
Are IFrames (HTML) obsolete?
Getting contradictory messages about that, hope they're not.
I cannot imagine support for it would stop, since a gazillion sites use them.
Some additional questions about that:
Why should they ...
31
votes
5answers
22k views
overlay opaque div over youtube iframe :)
How can I overlay a div with semi-transparent opacity over a youtube iframe embedded video?
<iframe class="youtube-player" type="text/html" width="520" height="330" ...
27
votes
17answers
5k views
Why developers hate iframes? [closed]
Possible Duplicate:
Are iframes considered 'bad practice'?
While working with web developers, I always hear from them that using iframes is something we must avoid as we can, and ...
25
votes
15answers
6k views
Are iframes a terrible idea?
I'm building a widget, and I've been using iframes to present content within it. At some point, I might start serving third party HTML and JS, so I thought iframes would be a good idea.
It does make ...
22
votes
2answers
7k views
Can I use multiple versions of jQuery on the same page?
A project I'm working on requires the use of jQuery on customers' Web pages. Customers will insert a chunk of code that we'll supply which includes a few <script> elements that build a widget in ...
22
votes
8answers
27k views
What's the best way to reload an iframe using JavaScript?
I would like to reload an iframe using JavaScript. The best way I found until now was set the iframe src attribute to itself, but this isn't very clean. Any ideas?
21
votes
3answers
35k views
Change content in iframe with jquery
I was wondering if it is possible to have a site with an iframe and some jquery code that changes the iframe content every 30 second. The content is differen webpages.
Something like this:
...
21
votes
9answers
25k views
How do I get the current location of an iframe?
I have built a basic data entry application allowing users to browse external content in iframe and enter data quickly from the same page. One of the data variables is the URL.
Ideally I would like to ...
20
votes
9answers
43k views
Resize iframe height according to content height in it
I am opening my blog page in my website. The problem is I can give a width to an iframe but the height should be dynamic so that there is no scrollbar in the iframe, and it looks like a single page...
...
19
votes
7answers
16k views
Reload an iframe with jQuery
I have two iframes on a page and one makes changes to the other but the other iframe doesnt show the change until i refresh ....is there an easy way to refresh this iframe with jQuery
<div ...
17
votes
4answers
28k views
Unsafe JavaScript attempt to access frame with URL
I am getting below error when i try to set a hash value to the parent url from iframe which contains another domain url.
Unsafe JavaScript attempt to access frame with URL "URL1" from frame with URL ...
17
votes
7answers
48k views
How to access parent Iframe from javascript
Well, I have an IFrame, which calls a same domain page.
My problem is that I want to access some information from this parent Iframe from this called page (from javascript). How can I access this ...
17
votes
4answers
26k views
Redirect parent window from an iframe action using JavaScript
What JavaScript do I need to use to redirect a parent window from an iframe?
I want them to click a hyperlink which, using JavaScript or any other method, would redirect the parent window to a new ...
16
votes
6answers
6k views
Preventing iframe caching in browser
How do you prevent Firefox and Safari from caching iframe content?
I have a simple webpage with an iframe to a page on a different site. Both the outer page and the inner page have HTTP response ...
16
votes
8answers
34k views
How do I print an IFrame from javascript in Safari/Chrome
Can someone please help me out with printing the contents of an IFrame via a javascript call in Safari/Chrome.
This works in firefox:
$('#' + id)[0].focus();
$('#' + id)[0].contentWindow.print();
...
16
votes
3answers
3k views
Moving ModalPopup Outside the IFrame. Possible?
I have an iframe inside my main page. There is a modalpopup inside the iframe page. So when the modalpopup is shown, the parent of the modalpopup is the iframe body and the main page parent body. Thus ...
16
votes
2answers
8k views
Retrieving HTTP status code from loaded iframe with Javascript
I used the jQuery Form plugin for asynchronous form submission. For forms that contain files, it copies the form to a hidden iframe, submits it, and copies back the iframe's contents. The problem is ...
15
votes
3answers
13k views
Overcoming “Display forbidden by X-Frame-Options”
I'm writing a tiny webpage whose purpose is to frame a few other pages, simply to consolidate them into a single browser window for ease of viewing. A few of the pages I'm trying to frame forbid ...
15
votes
6answers
27k views
Using CSS to affect div style inside iframe
Is it possible to change styles of a div that resides inside an iframe on the page using CSS only?
15
votes
5answers
27k views
How to prevent IFRAME from redirecting top-level window
Some websites have code to "break out" of IFRAME enclosures, meaning that if a page A is loaded as an IFRAME inside an parent page P some Javascript in A redirects the outer window to A.
Typically ...
15
votes
3answers
14k views
Accessing Domain Cookies within an iFrame on Internet Explorer
My domain (let's call it www.foo.com) creates a cookie.
On another site (let's say, www.myspace.com), my domain is loaded within an iFrame.
On every browser (Firefox, Opera, Camino, Safari, etc...) ...
14
votes
7answers
12k views
Redirect the parent page from IFrame
I am using an IFrame, and from this IFrame I want to redirect to another page.
Please tell me how to do this without any JavaScript, ie, no window.location.
Response.Redirect shows the page in the ...
14
votes
15answers
31k views
Safari/Chrome (Webkit) - Cannot hide iframe vertical scrollbar
I have an iframe on www.mydomain.com that points to support.mydomain.com (which is a CNAME to a foreign domain). I automatically resize the height of my iframe so that the frame will not need any ...
14
votes
6answers
7k views
Computing a cross-browser iframe height
One of the most difficult problems in my javascript experience has been the correct (that is "cross-browser") computing of a iframe height.
In my applications I have a lot of dynamically generated ...
13
votes
6answers
721 views
Is it possible to peform an asynchronous cross-domain file-upload?
It is possible! Read below.
First of all, let me use this diagram to explain how asynchronous file uploads can be achieved:
As you can see, the trick is to let the HTTP-response load into a ...
13
votes
2answers
432 views
How to handle YouTube video events (started, finished, etc) in uiwebview iOS
Currently I'm using the new iframe API to embed a YouTube video inside the uiwebview on the iPad and I've been able to make it auto play without user interactions.
In the iframe API it is described ...
13
votes
2answers
6k views
IE Issue: Submitting form to an iframe using javascript
I was trying to create an iframe element using javascript, like so:
var iframe = document.createElement('iframe');
iframe.setAttribute('name', 'frame_x');
However, when I tried submitting a form ...
12
votes
3answers
1k views
Debugging iframes with Chrome developer tools
I'd like to use the Chrome developer console to look at variables and DOM elements in my app, but the app exists inside an iframe (since it's an OpenSocial app).
So the situation is:
<containing ...
12
votes
1answer
12k views
iFrame src change event detection?
Assuming I have no control over the content in the iframe, is there any way that I can detect a src change in it via the parent page? Some sort of onload maybe?
My last resort is to do a 1 second ...
12
votes
4answers
8k views
Detect iFrame embedding in Javascript
I have an application that has a certain page -- let's call it Page A. Page A is sometimes a top-level page, but also sometimes is embedded as an iframe within page B. All pages come from the same ...
12
votes
2answers
14k views
Refreshing Facebook session from an iframe application
I've got a Facebook iframe application that is completely external. By this I mean that once a user accesses the canvas URL to load the application, all the links in the iframe app go to my servers, ...
11
votes
6answers
508 views
Desperately need a solution for Adsense that works with Ajax
I know this questions has been asked a few times here. But these seem fairly outdated, and it looks like the Adsense for Ajax project has been canned (or at the very least, moving very slowly).
I ...
11
votes
8answers
3k views
iframe without an src attribute
I would like to create an <iframe> on the page, but then add the src later. If I make an iframe without an src attribute, then it loads the current page in some browsers. What is the correct ...
11
votes
4answers
13k views
“Access is denied” JavaScript error when trying to access the document object of a programmatically-created <iframe> (IE-only)
I have project in which I need to create an <iframe> element using JavaScript and append it to the DOM. After that, I need to insert some content into the <iframe>. It's a widget that will ...
11
votes
5answers
6k views
How to clear the content of an IFRAME?
How do I clear the content of my IFRAME element, using javascript, without loading a blank page into it?
I can figure out to do this: iframe_element.src = "blank.html", but there must be a better, ...