i'm opening a popup from window a of http://example.com. then close window a and open another window b with same domain, http://example.com. ıs it possible to access popup's DOM from window b and how?
popup is opened from window a by window.open('http://example.com/blah', 'somename', settings..), executing the same from window b with different url like window.open("http://example.com/blah2", "somename" ...) works, which gives a (false?) hint that the popup is accessed by window name. but could not find any way to access to DOM of the popup with or without windowname.
any suggestions?