window.popup = window.open($(this).attr('href'), 'Ad', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0');
$(window.popup).onload = function()
{
alert("Popup has loaded a page");
};
This doesn't work in any browser I've tried it with (IE, Firefox, Chrome). How can I detect when a page is loaded in the window (like an iframe onload)?
This did the trick for me; full example:
HTML:
Javascript:
If you care about IE, use the following as the second line instead:
As you can see, supporting IE is quite cumbersome and should be avoided if possible. I mean, if you need to support IE because of your audience, by all means, do so.
As noted this answer's https://stackoverflow.com/a/3030893 aka Detecting the onload event of a window opened with window.open solution is ideal:
However, other comments and answers perpetrate several erroneous misconceptions as explained below.
The following script demonstrates the temperamental temporal fickleness of defining
onload
. Apply the script to a fast loadinglocation.href
such asfile:///
and some slow site to see the problem. It is possible to see eitheronload
message or none at all (by reloading a loaded page all 3 variations can be seen). It is also assumed that the page being loaded itself does not define anonload
event which would compound the problem.The
onload
's event handler definitions are definitely not "inside popup's HTML markup" though they will ultimately reside in the DOM of thebody
... of theHTML
.what you can do:
javascript: ...
URIit will inherit the same-site policies as the foreign URL
NB. the javascript may need to be bookmarked as a bookmarklet since address bar URI
javascript:
's are not effective in recent (circa 2012) browsersthe script is manually entered into those locations
Thus any page, well almost, irregardless of origin, can be modified like:
(well almost ...
jar:file:///usr/lib/firefox/omni.ja!/chrome/toolkit/content/global/aboutSupport.xhtml
Mozilla's FF troubleshooting page and other
jar
archives are exceptions)As another example:
To routinely disable google's usurping of target pg. hits, change it's
rwt
function as follows:and bookmark this as
spay google
(neuteralize google
?) ie. it's "fixed".This bookmark is then clicked before any
google
hits are clicked, so bookmarks of any of those hits are clean and not the mongrelized perverted aberrations thatgoogle
made of them.tests done with
It should be noted that
addEventListener
in Mozilla only has a non-standard fourth, boolean parameter which,, iftrue
allows untrusted content triggers to be instantiated for foreign pages.ref:
element.addEventListener | Document Object Model (DOM) | MDN:
Interaction between privileged and non-privileged pages | Code snippets | MDN:
Bookmark:
Detecting the onload event of a window opened with window.open
If the pop-up's document is from a different domain, this is simply not possible.
Update April 2015: I was wrong about this: if you own both domains, you can use
window.postMessage
and themessage
event in pretty much all browsers that are relevant today.If not, there's still no way you'll be able to make this work cross-browser without some help from the document being loaded into the pop-up. You need to be able to detect a change in the pop-up that occurs once it has loaded, which could be a variable that JavaScript in the pop-up page sets when it handles its own
load
event, or if you have some control of it you could add a call to a function in the opener.onload
event handler must be inside popup's HTML<body>
markup.