Name
Window.onunload: the handler invoked when the browser leaves a page — DOM Level 0:
Synopsis
Function onunload
Description
The onunload property of a
Window specifies an event-handler function that is invoked when the
browser “unloads” a document in preparation for loading a new
one.
The initial value of this property is a function that contains
the semicolon-separated JavaScript statements specified by the
onunload attribute of the
<body> or <frameset> tags.
The onunload event handler
enables you to perform any necessary cleanup of the browser state
before a new document is loaded.
The onunload( ) handler is
invoked when the user has instructed the browser to leave the
current page and move somewhere else. Therefore, it is usually
inappropriate to delay the loading of the desired new page by
popping up dialog boxes (with Window.confirm( ) or Window.prompt( ), for example) from an
onunload event handler.
See Also
Window.onload; Chapter 17
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access