Opening a new browser window (development): Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
mNo edit summary
m (categories)
Line 10: Line 10:
var b = newWindow.getBrowser();</pre>
var b = newWindow.getBrowser();</pre>


[[Category:Development]]
[[Category:Development|Opening a new browser window]] [[Category:Example code|Opening a new browser window]]

Revision as of 10:56, 16 January 2005

This page is part of the extension development documentation project.

Ask your questions in MozillaZine Forums. Also try browsing example code.

Note: development documentation is in process of being moved to Mozilla Development Center (MDC).

Opening a new browser window

To open a new browser window, you can simply use window.open. However, window.open returns a DOMWindow, not a ChromeWindow, so you can't get access to the browser chrome from it. You can, however use nsIWindowMediator to get the window you just opened.

Example

window.open();
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
    .getService(Components.interfaces.nsIWindowMediator);
var newWindow = wm.getMostRecentWindow("navigator:browser");
var b = newWindow.getBrowser();