vote up 1 vote down star

Hi!

How I can capture event, close browser window, in jQuery or javascript ?

flag

71% accept rate

2 Answers

vote up 1 vote down check

You're looking for the onclose event.

see: https://developer.mozilla.org/en/DOM/window.onclose

note that not all browsers support this (for example firefox 2)

link|flag
But in Ie7 it doesn't work ?! – Alexander Corotchi Jun 22 at 8:26
1  
it does not work in many browsers. but that is the only event for the closing of a browser window – Jonathan Fingland Jun 22 at 8:30
vote up 2 vote down

http://docs.jquery.com/Events/unload#fn

jQuery:

$(window).unload( function () { alert("Bye now!"); } );

or javascript:

window.onunload = function(){alert("Bye now!");}
link|flag
this event work and when I do refresh, but i need, only when I close the browser! – Alexander Corotchi Jun 22 at 7:52
1  
@Alexander Corotchi: Why do you want to know when the user closes the browser? – Steve Harrison Jun 22 at 8:19
In my application can work more users, And when 1 user close browser a need to execute a function for exclude this user from this application. – Alexander Corotchi Jun 22 at 8:51

Your Answer

Get an OpenID
or

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