What is the best way to detect if a user leaves a web page?

The onunload JavaScript event doesn't work every time (the HTTP request takes longer than the time required to terminate the browser).

Creating will probably be blocked by current browsers.

link|improve this question

feedback

4 Answers

up vote 40 down vote accepted

Try the onbeforeunload event: It is fired just before the page is unloaded

It also allows you to ask back if the user really wants to leave.

see this demo

alternatively, you can send out an ajax request when he leaves.

link|improve this answer
Thanks for the tip! Thanks to you I was able to achieve a new JS magic trick :) – Gilles Oct 4 '08 at 8:06
Nice ! I was never sure if that was a "rude" thing for a web page or app to do, but I guess for ajaxey apps, it makes good sense. – Michael Neale Jan 12 '09 at 9:00
1  
It'd be nice for the user if you tracked if the form changed and only prompt if it did - so it's not annoying. – adam0101 Sep 10 '10 at 21:13
feedback

One (slightly hacky) way to do it is replace and links that lead away from your site with an AJAX call to the server-side, indicating the user is leaving, then use that same javascript block to take the user to the external site they've requested.

Of course this won't work if the user simply closes the browser window or types in a new URL.

To get around that, you'd potentially need to use Javascript's setTimeout() on the page, making an AJAX call every few seconds (depending on how quickly you want to know if the user has left).

link|improve this answer
2  
If you use the report home approach, there's no need to modify every link in the page. – Vinko Vrsalovic Sep 29 '08 at 5:41
feedback

In Silverlight there is a event in App.xaml.cs Exit. The default handler for it Application_Exit. It fires when you leave the application.

link|improve this answer
feedback

Mozilla Developer Network has a nice description and example of onbeforeunload.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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