Home
Welcome to the home page
The History API allows manipulation of the browser session history, enabling single-page applications (SPAs) to update the URL without full page reloads.
history.back() and history.forward().
You can also use history.go(n) to jump multiple entries.
Navigation will trigger the popstate event.
Click pages below to navigate. The URL updates without a page reload.
Add a new entry to the browser history. This does not reload the page.
Replace the current history entry. Does not create a new entry.
Note: The History API does not provide access to the full history stack for privacy reasons. This list tracks only entries created during this session.