Is there any way of knowing if the user closes a tab in a web browser? Specifically IE7, but also FireFox and others as well. I would like to be able to handle this situation from our asp code if the current tab containing our web site closes.
|
|
Attach an "onbeforeunload" event. It can execute code just before the browser/tab closes. |
||||
|
|
|
As Eran Galperin suggested, use |
||
|
|
|
|
If you need to know when the page is closed at the server side, your best bet is to ping the server periodically from the page (via |
||
|
|
|
|
Does document.unload not do it if you? |
||||||
|
