Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 one will probably be blocked by current browsers.

share|improve this question

4 Answers

up vote 77 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 the demo onbeforeunload Demo.

Alternatively, you can send out an Ajax request when he leaves.

share|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
2  
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

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).

share|improve this answer
3  
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

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.

share|improve this answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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