Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

loadURI

The BrowserApp object is only available to privileged code running on Firefox for Android, and is intended for use by Firefox for Android add-ons.

Summary

BrowserApp.loadURI(uri, browser, params) loads the specified URI into the specified browser.

Syntax

window.BrowserApp.loadURI(uri);

window.BrowserApp.loadURI(uri, browser);

window.BrowserApp.loadURI(uri, browser, params);

uri
The URI to open represented as a string.
browser
The browser in which to open the URI. This is an optional parameter: if it is omitted the URI is opened in the browser hosted by the currently selected tab.
params
An optional set of parameters. These are the same parameters as those supplied to the loadURIWithFlags() method.

Example

This code loads "https://www.mozilla.org/" into the first tab:

window.BrowserApp.loadURI("https://www.mozilla.org/", window.BrowserApp.tabs[0].browser);

See Also

Document Tags and Contributors

 Contributors to this page: wbamberg
 Last updated by: wbamberg,