Navigate window to a URL : window « Javascript Objects « JavaScript DHTML

Home
JavaScript DHTML
1.Ajax Layer
2.Data Type
3.Date Time
4.Development
5.Document
6.Dojo toolkit
7.Event
8.Event onMethod
9.Ext JS
10.Form Control
11.GUI Components
12.HTML
13.Javascript Collections
14.Javascript Objects
15.Javascript Properties
16.jQuery
17.Language Basics
18.Mochkit
19.Mootools
20.Node Operation
21.Object Oriented
22.Page Components
23.Rico
24.Scriptaculous
25.Security
26.SmartClient
27.Style Layout
28.Table
29.Utilities
30.Window Browser
31.YUI Library
JavaScript DHTML » Javascript Objects » window 
Navigate window to a URL
 
    
<html>
<body>
<script language="JavaScript">
    function function1() {
        window.navigate("http://www.java2s.com");
    }
</script>
<input id=myB 
       type="button" 
       value="Navigate to Java2s.com home page" 
       onclick="function1();">
</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.Move window By
8.Move window to
9.Clear Interval
10.Clear Timeout
11.Display confirm dialog
12.Define dialog arguments
13.Set the dialog window left
14.Set dialog window top
15.Set dialog window width
16.Set the dialog window height
17.Is window closed
18.Display an alert dialog
19.Close a window
20.'offScreenBuffering' Example
21.Open a new window and close it
22.Open a new Window
23.Print a window
24.Create a prompt
25.Window resize By
26.'screenTop' Example
27.Set Timeout (window.setTimeout)
28.Show a Popup
29.Show Help (window.showHelp('URL'))
30.Show Modal Dialog (window.showModalDialog('URL', myArguments, ''))
31.Window self
32.Show Modeless Dialog (window.showModelessDialog(..))
33.Display information in status (window.status)
34.Let window navigate to a URL (window.navigate('http://www.java2s.com'))
35.Show Browser UI
36.Add Desktop Component
37.Handling Status Message Changes
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.