ShowBrowserUI method (external)
Opens the specified system dialog.
If you need to open the standard Windows Color dialog box, use the ChooseColorDlg method in Internet Explorer.
Syntax:
You can find the related objects in the Supported by objects section below.
Parameters:
Required. String that specifies the type of the dialog to open.
One of the following values:
|
|||||||||||||||||||||||||||||||||||||||
Required. Always set to null. |
Return value:
Depends on the specified dialog.
Example HTML code 1:
This example illustrates the use of the ShowBrowserUI method:
|
||||
<head> <script type="text/javascript"> function ShowBrowserDialog (type) { window.external.ShowBrowserUI (type, null); } </script> </head> <body> <button onclick="ShowBrowserDialog ('OrganizeFavorites');">Open the Organize Favorites dialog!</button> <button onclick="ShowBrowserDialog ('LanguageDialog');">Open the Language Preference dialog!</button> <button onclick="ShowBrowserDialog ('PrivacySettings');">Open the Privacy dialog!</button> <button onclick="ShowBrowserDialog ('ProgramAccessAndDefaults');">Open the Set Program Access and Defaults dialog!</button> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by objects:
External links:
User Contributed Comments