Show Browser UI : window : Javascript Objects : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP


JavaScript DHTML  »  Javascript Objects   » [  window  ]   
 



Show Browser UI

Please note that some example is only working under IE or Firefox.

    
<html>
<body>
<script language="JavaScript">
    function function1() {
        window.external.ShowBrowserUI('LanguageDialog', null);
    }
    function function2() {
        window.external.ShowBrowserUI('OrganizeFavorites', null);
    }
    function function3() {
        window.external.ShowBrowserUI('PrivacySettings', null);
    }
</script>
<input type="button" 
       value="Open the Language Preferences dialog box." 
       onclick="function1();">
<input type="button" 
       value="Open the Organize Favorites dialog box." 
       onclick="function2();">
<input type="button" 
       value="Open the Privacy Preferences dialog box." 
       onclick="function3();">
</body>
</html>

    
      
      
Related examples in the same category
1.  Create a Popup window
2.  Set Default Status Information
3.  Execute Javascript
4.  Hide a window
5.  Is window Open
6.  Windown screen Left
7.  Navigate window to a URL
8.  Move window By
9.  Move window to
10.  Clear Interval
11.  Clear Timeout
12.  Display confirm dialog
13.  Define dialog arguments
14.  Set the dialog window left
15.  Set dialog window top
16.  Set dialog window width
17.  Set the dialog window height
18.  Is window closed
19.  Display an alert dialog
20.  Close a window
21.  'offScreenBuffering' Example
22.  Open a new window and close it
23.  Open a new Window
24.  Print a window
25.  Create a prompt
26.  Window resize By
27.  'screenTop' Example
28.  Set Timeout (window.setTimeout)
29.  Show a Popup
30.  Show Help (window.showHelp('URL'))
31.  Show Modal Dialog (window.showModalDialog('URL', myArguments, ''))
32.  Window self
33.  Show Modeless Dialog (window.showModelessDialog(..))
34.  Display information in status (window.status)
35.  Let window navigate to a URL (window.navigate('http://www.java2s.com'))
36.  Add Desktop Component
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.