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