Firefox Tomorrow

web api instance property

PopStateEvent: state property

View on MDN ↗

The state read-only property of the PopStateEvent interface represents the state stored when the event was created.

Practically it is a value provided by the call to pushState() or replaceState()

Value

An object, or null.

Examples

The code below logs the value of state when using the pushState() method to push a value to the history.

// Log the state of
addEventListener("popstate", (event) => {
  console.log("State received: ", event.state);
});

// Now push something on the stack
history.pushState({ name: "Example" }, "pushState example", "page1.html");
history.pushState(
  { name: "Another example" },
  "pushState example",
  "page1.html",
);

This will log:

State received: { name: "Example" }
State received: { name: "Another example" }

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also