Nagarajan Ganesh
Nagarajan Ganesh

Reputation: 573

Capture browser events

How can i capture the browser events like 'window close', 'back button pressed' using javascript or any other client script.

Is there a way to capture the events when clicked outside the document.

Upvotes: 2

Views: 689

Answers (1)

Andy E
Andy E

Reputation: 344585

The unload and beforeunload events will fire when the window is closed or the back button is pressed, but they will also fire for any type of navigation away from the current page.

You can't capture events outside the context of your web page.

Upvotes: 4

Related Questions