'history' Example : history « Javascript Objects « JavaScript Reference

Home
JavaScript Reference
1.Event Handlers Reference
2.Javascript Collections
3.Javascript Methods
4.Javascript Objects
5.Javascript Properties
JavaScript Reference » Javascript Objects » history 




'history' Example

    
<html>
<head>
<script language="JavaScript">
function function1(){
    history.back(1);
}
</script></head>
<body>
<input id="myButton" 
       type="button" 
       onclick="function1();" 
       value="Go back 1 step in the history list">
</body>
</html>

    
      
      














Related examples in the same category
1.'history' Syntax and Note
2.'history' JavaScript Properties
3.'history' JavaScript Methods
4.'history' is applied to
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.