History
Allows manipulation of the browser session history, that is the pages visited in the tab or frame that the current page is loaded in.
interface History {
readonly length: number;
scrollRestoration: ScrollRestoration;
readonly state: any;
back(): void;
forward(): void;
go(delta?: number): void;
}§Properties
§
scrollRestoration: ScrollRestoration
[src]