I have a function in an iFrame (same domain) that I want to call from a popup.

So basically I want to do something like window.opener.document.getElementById('topFrame').contentWindow.setActive('1');

In the window.opener of the popup, i have an iframe with the id "topFrame" (and name "topFrame" in case that's a better solution) in which the function setActive('1') must be executed. However the code stated above does not work and google isn't really helping in finding solutions for this specific case.

Anyone has an idea?

Thx

link|improve this question

50% accept rate
At which point does it not work? Have you tried logging to verify that you have successfully got a reference to the iframe, etc? If you can pinpoint which "dot" is breaking it, it would help debug the problem. – GregL Feb 20 at 8:32
feedback

1 Answer

Your line should actually work and the problem probably a timing issue: most likely your iframe hasn't finished loading at the time you are trying to call its function. Placing your call after load or DomReady should do the trick.

(You can also experiment by wrapping your call in a timeout and see if it works at a later point).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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