Interface

PageTransitionEvent

PageTransitionEvent

The PageTransitionEvent is fired when a document is being loaded or unloaded.

View Source js/lib.dom.d.ts, line 5370

Members

boolean

# persisted

For the pageshow event, returns false if the page is newly being loaded (and the load event will fire). Otherwise, returns true.

For the pagehide event, returns false if the page is going away for the last time. Otherwise, returns true, meaning that (if nothing conspires to make the page unsalvageable) the page might be reused if the user navigates back to this page.

Things that can cause the page to be unsalvageable include:

Listening for beforeunload events Listening for unload events Having iframes that are not salvageable Active WebSocket objects Aborting a Document

View Source js/lib.dom.d.ts, line 5373