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 parent.functionName() but unfortunately I need exactly the opposite of that.

Please note that my problem is not changing the source url of the iframe, but invoking function defined in the iframe.

link|improve this question

3  
Your note about parent.fuctioName() solved my problem of calling a function in the iframe's parent html. Thanx! – CyberED Jun 13 '11 at 1:34
feedback

13 Answers

up vote 125 down vote accepted

Assume your iFrame's id is "targetFrame" and the function you want to call is targetFunction():

document.getElementById('targetFrame').contentWindow.targetFunction();

You can also access the frame using window.frames instead of document.getElementById.

link|improve this answer
35  
BTW: You can't use "window.frames" if your IFRAME was created programmatically, only if it is declared in the HTML page source. – Tomalak Oct 31 '08 at 19:22
works in FF 7, Chrome 12, IE 8/9, and Safari (not sure of this version) – Darcy Nov 2 '11 at 19:38
1  
This solution does not work for my gadget, here is my code document.getElementById('remote_iframe_0').contentWindow.my.create_element_gadg‌​‌​et('verify_user');" remote_iframe_0 is created programmaticaly by a apache shindig server but window.parent.document.getElementById('remote_iframe_0').contentWindow.my.creat‌​e_element_gadg‌​et('verify_user');" works – Sai Krishna Jan 10 at 11:30
feedback

There are some quirks to be aware of here.

  1. HTMLIFrameElement.contentWindow is probably the easier way, but it's not quite a standard property and some browsers don't support it, mostly older ones. This is because the DOM Level 1 HTML standard has nothing to say about the window object.

  2. You can also try HTMLIFrameElement.contentDocument.defaultView, which a couple of older browsers allow but IE doesn't. Even so, the standard doesn't explicitly say that you get the window object back, for the same reason as (1), but you can pick up a few extra browser versions here if you care.

  3. window.frames['name'] returning the window is the oldest and hence most reliable interface. But you then have to use a name="..." attribute to be able to get a frame by name, which is slightly ugly/deprecated/transitional. (id="..." would be better but IE doesn't like that.)

  4. window.frames[number] is also very reliable, but knowing the right index is the trick. You can get away with this eg. if you know you only have the one iframe on the page.

  5. It is entirely possible the child iframe hasn't loaded yet, or something else went wrong to make it inaccessible. You may find it easier to reverse the flow of communications: that is, have the child iframe notify its window.parent script when it has finished loaded and is ready to be called back. By passing one of its own objects (eg. a callback function) to the parent script, that parent can then communicate directly with the script in the iframe without having to worry about what HTMLIFrameElement it is associated with.

link|improve this answer
1  
Great stuff! Especially your suggestion 5. has shown to be extremely valuable. It solved me a lot of headaches when trying to access iFrame functions from the parent in Chrome. Passing the function object out from the iFrame made it run like a charm in Chrome, FF and even IE from 9 down to 7 and also made it very easy to check if the function had loaded already. Thanks! – Jpsy Nov 24 '11 at 7:10
feedback

Calling a parent JS function from iframe is possible, but only when both the parent and the page loaded in the iframe are from same domain i.e. abc.com, and both are using same protocol i.e. both are either on http:// or https://. The call will fail in below mentioned cases:
1. Parent page and the iframe page are from different domain.
2. They are using different protocols, one is on http:// and other is on https://.

link|improve this answer
feedback

In the IFRAME, make your function public to the window object:

window.myFunction = function(args) {
   doStuff();
}

For access from the parent page, use this:

var iframe = document.getElementById("iframeId");
iframe.contentWindow.myFunction(args);
link|improve this answer
feedback

If the iFrame and the containing document is on a different domain, these methods might not work, but there is a solution:

For example, if document A contains an iframe element that contains document B, and script in document A calls postMessage() on the Window object of document B, then a message event will be fired on that object, marked as originating from the Window of document A. The script in document A might look like:

var o = document.getElementsByTagName('iframe')[0];
o.contentWindow.postMessage('Hello world', 'http://b.example.org/');

To register an event handler for incoming events, the script would use addEventListener() (or similar mechanisms). For example, the script in document B might look like:

window.addEventListener('message', receiver, false);
function receiver(e) {
  if (e.origin == 'http://example.com') {
    if (e.data == 'Hello world') {
      e.source.postMessage('Hello', e.origin);
    } else {
      alert(e.data);
    }
  }
}

This script first checks the domain is the expected domain, and then looks at the message, which it either displays to the user, or responds to by sending a message back to the document which sent the message in the first place.

via http://dev.w3.org/html5/postmsg/#web-messaging

link|improve this answer
1  
easyXDM provides an abstraction over PostMessage for older browsers (including a Flash (LocalConnection) fallback for the stubborn dinosaurs). – JonnyReeves Mar 6 at 9:55
feedback

The IFRAME should be in the frames[] collection. Use something like

frames['iframeid'].method();
link|improve this answer
feedback

Just for the record, I've ran into the same issue today but this time the page was embedded in an object, not an iframe (since it was an XHTML 1.1 document). Here's how it works with objects:

document
  .getElementById('targetFrame')
  .contentDocument
  .defaultView
  .targetFunction();

(sorry for the ugly line breaks, didn't fit in a single line)

link|improve this answer
feedback
       $("#myframe").load(function() {
            alert("loaded");
        });
link|improve this answer
feedback

Same things but a bit easier way will be How to refresh parent page from page within iframe. Just call the parent page's function to invoke javascript function to reload the page:

window.location.reload();

Or do this directly from the page in iframe:

window.parent.location.reload();

Both works.

link|improve this answer
feedback

Continuing with JoelAnair's answer:

For more robustness, use as follows:

var el = document.getElementById('targetFrame');

if(el.contentWindow)
{
   el.contentWindow.targetFunction();
}
else if(el.contentDocument)
{
   el.contentDocument.targetFunction();
}

Workd like charm :)

link|improve this answer
feedback

If We want call the parent page javascript function from the iframe which generated from the coding. ex shadowbox or lightbox

window.parent.targetFunction();

link|improve this answer
feedback

Try just parent.myfunction()

link|improve this answer
feedback

http://www.quirksmode.org/js/iframe.html

link|improve this answer
5  
That link appears to be broken. – zaphod Jun 11 '09 at 22:10
1  
And to make matters worse, I cant find the related page nowhere on quirksmode. – stricjux Dec 31 '09 at 10:23
feedback

Your Answer

 
or
required, but never shown

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