How do you access history in javascript?

Asked: Apr 14, 2023

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.

Asked by brijesh

Answers (0)

No answers yet. Be the first to answer!