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:
Is it possible that the
onunloadevent handler in the body tag is too slow to send the theXMLHttpRequestserver before the browser is closed?If so, what can I do to send a signal to the server when the user closes a browser?
Thanks!
onbeforeunload? – nnnnnn Nov 29 '11 at 3:11onunloadshould 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