vote up 14 vote down star
7

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

The onUnload javascript method 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.

I'm also using Silverlight, so Silverlight solutions are welcome.

flag

3 Answers

vote up 17 vote down check

try onBeforeUnload.

with onbeforeunload you can even ask back if the user really wnats to leave.

see this demo

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

link|flag
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 at 9:00
vote up 3 vote down

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|flag
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
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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