Getting Current URL: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
(initial)
 
m (removed duplicate heading)
Line 1: Line 1:
=Getting Current URL=
There are a variety of ways to get the current URL, depending upon the context in which your code is running:
There are a variety of ways to get the current URL, depending upon the context in which your code is running:



Revision as of 18:12, 6 December 2005

There 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;
}