Getting Current URLFrom MozillaZine Knowledge BaseThere are a variety of ways to get the current URL, depending upon the context in which your code is running: window.location.href window.opener.location.href gURLBar.value The "brute force" method always works, but isn't necessarily the most efficient. This code always returns the URL of the most recently used browser, so it isn't sufficient if you need to get the URL of a background browser. function getURL() { var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]. getService(Components.interfaces.nsIWindowMediator); var recentWindow = wm.getMostRecentWindow("navigator:browser"); return recentWindow ? recentWindow.content.document.location : null; } [edit] Appendix |