fedors...@gmail.com
unread,May 3, 2013, 3:37:47 PM5/3/13You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hello everyone!
I am writing a firefox Extension (xul). Processing the loading of document as follows:
this._loadHandler = function(event) {
...
};
gBrowser.addEventListener("load", this._loadHandler, true);
It is necessary to get a reference to document where link to event.target has been clicked. (If event.target document has been opened without using a link, this reference is null).
I tried to use window.opener, but it always returned null.
Is there a way to solve this problem?