- JS Introduction
- JS Introduction
- JS Comments
- JS Variables
- JS Datatypes
- JS Operators
- JS Type Conversions
- JS Control Flow
- JS Comparisons
- JS If else
- JS If else Ladder
- JS Ternary Operator
- JS Switch
- JS For Loop
- JS For In
- JS For Of
- JS While
- JS Do While
- JS Break & Continue
- JS Functions
- JS Function Declaration
- JS Function Parameters
- JS Return Statement
- JS Function Expressions
- JS Anonymous Functions
- JS Objects
- JS Objects
- JS Object Methods
- JS Object Constructors
- JS Object Destructuring
- JS Object Prototypes
- JS Map, Filter & Reduce
- JS ES6
- JS ES6
- JS let and const
- JS Arrow Functions
- JS Template Literals
- Destructuring Assignment
- JS Spread Operator
- JS Default Parameters
- JS Classes
- JS Inheritance
- JS Map
- JS Set
- JS Async
- JS Callbacks
- JS Asynchronous
- JS Promises
- JS Async/Await
- JS HTML DOM/BOM
- JS Document Object
- JS getElementbyId
- getElementsByClassName
- JS getElementsByName
- getElementsByTagName
- JS innerHTML
- JS outerHTML
- JS Window Object
- JS History Object
- JS Navigator Object
- JS Screen Object
JavaScript History Object
Accessing the History Object:
- The history object is a property of the global window object in the browser environment.
- You can access it directly via window.history.
Navigating Back and Forward:
- The history object provides methods to navigate backward and forward in the history stack.
- history.back(): Moves the browser back one page in the history stack.
- history.forward(): Moves the browser forward one page in the history stack.
Example: Navigating Back and Forward
window.history.back(); // Moves the browser back one page
window.history.forward(); // Moves the browser forward one page
Length Property:
- The length property of the history object indicates the number of entries in the history stack.
- It represents the total number of pages the user has visited in the current browsing session.
Example: Accessing History Length
console.log(window.history.length); // Returns the number of entries in the history stack
Pushing and Replacing History Entries:
- The history object provides methods to add or modify history entries without navigating to a new page.
- history.pushState(): Adds a new entry to the history stack.
- history.replaceState(): Modifies the current entry in the history stack.
Example: Modifying History Entries
history.pushState(null, null, 'new-page.html'); // Adds a new entry to the history stack
history.replaceState(null, null, 'updated-page.html'); // Replaces the current entry in the history stack
Event Handling:
- You can listen for changes to the history stack using the popstate event.
- It fires when the active history entry changes, such as when the user navigates forward or backward.
Example: Handling History Changes
window.addEventListener('popstate', function(event) {
console.log('History state changed:', event.state);
});
Key Points
- The history object allows JavaScript code to interact with the browser's history stack.
- It provides methods for navigation, history management, and event handling.
- Understanding the history object is essential for implementing navigation controls, managing session history, and creating dynamic web applications.