An `iframe` is an HTML element that creates an "inline frame" within a document.

learn more… | top users | synonyms (1)

246
votes
9answers
212k 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: ...
289
votes
15answers
141k 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 ...
255
votes
19answers
42k 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://example.org"></iframe> So you insert anti-framing, frame busting JavaScript into all ...
69
votes
4answers
32k 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 ...
241
votes
13answers
335k 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?
240
votes
15answers
165k 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 ...
103
votes
7answers
192k 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 ...
83
votes
4answers
93k views

How do you post to an iframe?

How do you post data to an iframe?
109
votes
11answers
92k 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 ...
113
votes
9answers
44k 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 ...
95
votes
8answers
33k 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?
31
votes
9answers
47k 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 ...
3
votes
3answers
8k views

call Fancybox in parent from iframe

I have 2 pages, my index.html and social.html. I cleaned out my index and left only the jquery code need for fancybox What I am trying to do is to have images inside social.html and when clicked on ...
47
votes
14answers
31k views

Safari 3rd party cookie iframe trick no longer working?

So this is the umteenth revenge of the "how do I get 3rd party cookies to work in Safari" question but I'm asking again because I think the playing field has changed, perhaps after February 2012. One ...
38
votes
7answers
58k views

Iframe Function Calling From Iframe to parent page javascript function

I want to call a js function from iframe to a parent window <script> function abc() { alert("sss"); } </script> <iframe id=myFrame> <a onclick="abc();" href=# ...
37
votes
9answers
95k views

Adjust width height of iframe to fit with content in it

I need solution for auto adjust width height of iframe to fit with content in it, and the point is the content size (width, height) could be change after iframe loaded. I guess i need a event action ...
96
votes
6answers
136k views

Unsafe JavaScript attempt to access frame with URL

I am getting the 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 ...
66
votes
5answers
54k 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" ...
33
votes
1answer
34k views

Javascript - Get element from within an iFrame

I am trying to get a div from within an iframe and print it on my page. Any Ideas ?
53
votes
11answers
81k 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... ...
48
votes
10answers
118k 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 ...
49
votes
12answers
75k 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 ...
56
votes
12answers
78k 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 ...
43
votes
7answers
49k 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 ...
16
votes
8answers
72k views

How to get the body's content of an iframe in Javascript?

<iframe id="id_description_iframe" class="rte-zone" height="200" frameborder="0" title="description"> <html> <head></head> <body class="frameBody"> ...
100
votes
7answers
71k 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", ...
29
votes
8answers
60k 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(); ...
51
votes
14answers
29k views

Are IFrames (HTML) obsolete? [closed]

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 ...
17
votes
5answers
46k views

Scrolling an iframe with javascript?

I dynamically load an iframe with javascript. After it's loaded, how can I make it scroll down a specific number of pixels (ie. after the page in the iframe has loaded, how can I make the iframe ...
123
votes
7answers
123k 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 ...
48
votes
12answers
97k views

How to auto-size an iFrame? [duplicate]

Possible Duplicate: Resizing an iframe based on content I'm loading an iFrame and want the parent to automatically change the height based upon the height of the iFrame's content. To ...
36
votes
2answers
35k 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 ...
13
votes
3answers
21k views

Get current URL from IFRAME

Is there a simple way to get the current URL from an iframe? The viewer would going through multiple sites. I'm guessing I would be using something in javascript.
11
votes
9answers
20k views

Detect Click into Iframe using JavaScript

I understand that it is not possible to tell what the user is doing inside an iframe if it is cross domain. What I would like to do is track if the user clicked at all in the iframe. I imagine a ...
18
votes
3answers
35k views

How to add click event to a iframe with JQuery

I have an iframe on a page, coming from a 3rd party (an ad). I'd like to fire a click event when that iframe is clicked in (to record some in-house stats). Something like: ...
65
votes
8answers
75k 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
3answers
33k views

Write elements into a child iframe using Javascript or jQuery

I have something like this: <html> <body> <iframe id="someFrame"></iframe> </body> </html> And I would like to use jQuery to write elements such that ...
16
votes
10answers
30k views

access parent url from iframe

Okay, I have a page on and on this page I have an iframe. What I need to do is on the iframe page, find out what the url of the main page is. I have searched around and I know that this is not ...
19
votes
12answers
35k views

Using jQuery to grab the content from CKEditor's iframe

Hey guys, I have this custom written CMS that uses CKEditor *(FCKEditor v3) for editing content. Along with that I'm using the jQuery Validation plugin to check all fields for error prior to ...
24
votes
4answers
19k 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 ...
17
votes
4answers
17k views

Yet Another cross-domain iframe resize Q&A

How do i resize an iframe from another domain -Edit Scroll down for some solutions.. or read on how NOT to do this :D After many hours of code hacking- the conclusion is that anything inside the ...
30
votes
7answers
46k 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 ...
9
votes
4answers
24k views

jQuery iframe load() event?

Does anyone know if there is such a thing? I have a iframe that's being inserted with $.ajax() and I want to do some stuff after the contents from the iframe are completely loaded: .... success: ...
27
votes
7answers
54k views

IFRAMEs and the Safari on the iPad, how can the user scroll the content?

According to the Apple iOS mantra it should be possible to scroll the contents of an IFRAME by dragging it with two fingers. Unfortunately running the latest version of iOS on the iPad I have yet to ...
68
votes
6answers
80k views

how to force link from iframe to be opened in the parent window

I need to open the link in the same parent page, instead of open it in a new page. note : The iframe and parent page are the same domain.
16
votes
1answer
11k views

How does Facebook set cross-domain cookies for iFrames on canvas pages?

I was browsing Facebook's documentation reading about canvas applications and I came across an example application: http://developers.facebook.com/docs/samples/canvas. As I read through their example, ...
15
votes
5answers
7k views

How are the facebook chat windows implemented?

On Facebook you can browse the site without affecting the floating chat windows. Seems like if the main page was inside an iFrame and the footer and chat windows where floating outside. Is the main ...
19
votes
2answers
17k views

HTTP & HTTPS Iframe

I am creating a small widget and I want to allow others to use it. The iFrame is loaded from HTTP - but I want to allow users to login via HTTPS i.e. that is - send a request for login via SSL Is ...
5
votes
1answer
17k views

How can I access iFrame elements with Javascript?

I have a webpage where there is a texarea within a iframe. I need to read the value of this textarea from its child page javascript. Presently by using window.parent.getelementbyID().value in the ...
7
votes
4answers
19k views

<iframe> javascript access parent DOM across domains?

I control the content of an iframe which is embedded in a page from another domain. Is there any way for javascript in my iframe to make changes to the parent's DOM? For example, I would like to ...

1 2 3 4 5 21