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

From MozillaZine Knowledge Base
Jump to navigationJump to search
m (update link)
m (→‎Other resources: remove link, mentionned above)
Line 12: Line 12:
== Other resources ==
== Other resources ==
* More [[:Category:Example code|example code]].
* More [[:Category:Example code|example code]].
* Working with [[nsIWindowMediator]].
* More about [http://developer.mozilla.org/en/docs/Working_with_windows_in_chrome_code working with windows].
* More about [http://developer.mozilla.org/en/docs/Working_with_windows_in_chrome_code working with windows].


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

Revision as of 21:03, 19 September 2006

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).

To open a new browser window, you can simply use window.open. However, window.open returns a Window object for content, not for the browser window itself, so you should get the chrome Window first. The simplest way to do that is to use nsIWindowMediator.

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();

Other resources