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

From MozillaZine Knowledge Base
Jump to navigationJump to search
m (→‎Other resources: remove link, mentionned above)
(moved to mdc)
Line 1: Line 1:
{{extdev}}
{{extdev}}


To open a new browser window, you can simply use <code>window.open</code>.  However, <code>window.open</code> returns a <code>Window</code> object for content, not for the browser window itself, so you should get the chrome <code>Window</code> first. The simplest way to do that is to use [http://developer.mozilla.org/en/docs/nsIWindowMediator nsIWindowMediator].


== Example ==
Moved to [url=http://developer.mozilla.org/en/docs/Code_snippets:Windows]MDC[/url].
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 ==
* More [[:Category:Example code|example code]].
* 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 18:56, 6 February 2007

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


Moved to [url=http://developer.mozilla.org/en/docs/Code_snippets:Windows]MDC[/url].