|
|
|
|
|
window.history
Returns a reference to the history object, which provides an interface for manipulating the browser history.
Syntax
historyObj = window.historyParameters
historyObject is an object reference.
Example
h = window.history; if ( h.length ) { // if there is a history h.back(); // equivalent to clicking back button }
Notes
The history object provides the following interface:
You can call access this interface from the window object by calling, for example, window.history.back().
Specification
DOM Level 0. Not part of specification.
| mozilla.org | mailto:oeschger | bug 93108 |
|
|
|
|
|