I'm wondering if I could be having a browser speed issue that is affecting the efficient execution of a simple Javascript function.

I'm using the onunload event handler to call a function that sends an XMLHttpRequest message to the server when the user has closed the browser. Here is the Javascript code:

 function detectclose(){
      var url = '/event';
      var request = new XMLHttpRequest();
      var params = "params=false";

      request.open("GET", url + "?" + params, true); // open asynchronous post request
      request.send(null);
 }

In my HTML, my body tag is written as follows:

 <body onunload="detectclose();">

This code executes when I surf through the pages in my application; however, if I close the browser window, the code does not execute. It's almost as if the browser window closes before the code has a chance to execute.

During the early stages of developing my application, this code was working; it was detecting the browser closing; however, since the initial testing, I have added a significant amount of client-side code (CSS and Javascript).

My questions are:

  1. Is it possible that the onunload event handler in the body tag is too slow to send the the XMLHttpRequest server before the browser is closed?

  2. If so, what can I do to send a signal to the server when the user closes a browser?

Thanks!

link|improve this question

1  
Have you tried onbeforeunload? – nnnnnn Nov 29 '11 at 3:11
Thanks for the suggestion, nnnnnn, but onbeforeunload would cause the message to popup everytime the user hit a new page in my application. – Vee Dec 1 '11 at 16:06
But onunload should also be fired every time you hit a new page in your app, not just when the browser is closed. – nnnnnn Dec 1 '11 at 20:16
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.