Skip to content

Instantly share code, notes, and snippets.

@pwlin
Created April 7, 2010 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pwlin/358929 to your computer and use it in GitHub Desktop.
Save pwlin/358929 to your computer and use it in GitHub Desktop.
// access window object from XUL
function pageLoaded(){
alert("the page has been loaded")
}
window.addEventListener("load", function () {
gBrowser.addEventListener("load", pageLoaded, true);
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment