The History interface allows to manipulate the browser session history, that is the pages visited in the tab or frame that the current page is loaded in.

Documentation History by Mozilla Contributors, licensed under CC-BY-SA 2.5.

See:

Variables

read onlylength:Int

Returns an Integer representing the number of elements in the session history, including the currently loaded page. For example, for a page loaded in a new tab this property returns 1.

scrollRestoration:ScrollRestoration

Allows web applications to explicitly set default scroll restoration behavior on history navigation. This property can be either auto or manual.

read onlystate:Dynamic

Returns an any value representing the state at the top of the history stack. This is a way to look at the state without having to wait for a popstate event.

Methods

back ():Void

Throws:

null

DOMError

forward ():Void

Throws:

null

DOMError

go (delta:Int = 0):Void

Throws:

null

DOMError

pushState (data:Dynamic, title:String, ?url:String):Void

Throws:

null

DOMError

replaceState (data:Dynamic, title:String, ?url:String):Void

Throws:

null

DOMError