ShowBrowserUI method
Opens the specified browser dialog box.
Syntax
var retval = external.ShowBrowserUI(bstrName, pvarIn);Parameters
- bstrName [in]
-
Type: String
A String that specifies a browser dialog box, using one of the following values.
- pvarIn [in]
-
C++ A pointer to a Variant that is specific to the UI. JavaScript Null value.
Return value
Type: Variant
Variant. Return value is determined by the dialog box.Standards information
There are no standards that apply here.
Remarks
In Microsoft Internet Explorer 5, a new "PrivacySetting" option allows access to the Privacy Preferences dialog box.
Examples
This example uses the ShowBrowserUI method to open a particular dialog box when a button is clicked.
<button onclick="window.external.ShowBrowserUI('LanguageDialog', null)">Show Language Dialog</button> <button onclick="window.external.ShowBrowserUI('OrganizeFavorites', null)">Show Organize Favorites</button>
See also
Show: