History
History object manages the browser's history stack.
window.history
// or
historyhistory.go(-1); // moves page backward history.go(0); // refreshes the current page history.go(); // refreshes the current page history.go(1) // moves page forwardhistory.back();history.forward();
Last updated