This is not related to the domain like many other similar posts with the same error message.
Here is my set up:
<iframe src='somepage' />
user can open a window popup from within somepage and window.open is used. Assume my popup remain open and a new source page 'secondPage' is swapped into the same iframe. My popup can still its 'opener' but whenever i try to access the opener, it will throw an access denied scripting error.
so my question is, how can i either access it or check to see if it closed so i dont try to access it? i tried to check if window.opener.closed and apparently is returning me a false.....