0 votes
in JavaScript by
How do you access history in javascript?

1 Answer

0 votes
by

The window.history object contains the browser's history. You can load previous and next URLs in the history using back() and next() methods.

function goBack() {
  window.history.back();
}
function goForward() {
  window.history.forward();
}

Note: You can also access history without window prefix.

...