Forum Moderators: open
I would like to know if I can call a javascript function that is in the opener window from a popup.
Lets say that the window that opens the popup has a JS function called "returnAge();", now I want to call it when a person clicks on a button in the popup window.
I was thinking that maybe this may work:
function callOpenerFunction(){
window.opener.returnAge();
}
Any replies are gratefully received.
THANKS