vote up 1 vote down star

When a web application running and on close the browser window then which event raise?

flag

35% accept rate

5 Answers

vote up 1 vote down

onunload is the event raised when closing the browser window.

How ever this event isn't fired only when closing the browser, that's just one case.

link|flag
you also can't depend on it 100% of the time. If the browser crashes then it won't be sent. – tloach Nov 25 '08 at 11:27
@tloach: if the browser crashes your options are limited – orip Nov 25 '08 at 11:44
vote up 1 vote down

See existing topic:

http://stackoverflow.com/questions/299679/java-servlet-how-to-detect-browser-closing

link|flag
I was about to point to that... :-) – PhiLho Nov 25 '08 at 14:15
vote up 0 vote down

The web browser doesn't send any notification to the web server when the user closer the window.

link|flag
vote up 0 vote down

You may also be interested in onbeforeunload.

link|flag
vote up 0 vote down

See my answer at the thread pointed by Diodeus: basically, you cannot... Lot of browsers just no longer fire onbeforeunload and/or onunload. And even when they do, it is hard to distinguish between page reload, page jump and browser/window/tab closing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.