I am trying to detect when a user leaves a page. I am using the following code:
window.onbeforeunload = function (oEvent) {
var ef = document.createElement("script"); ef.type = "text/javascript"; ef.async=true; ef.src = "http://myCrossDomain/pageLeave.php?ref=";
document.getElementById("someElement").appendChild(ef);
return null;
}
I've found the following:
| close tab | refresh | new url | back history | forward history | anchor click |
--------+-----------+-----------+-----------+---------------+-------------------+---------------+
Chrome | works | nope | works | works | works | nope |
--------+-----------+-----------+-----------+---------------+-------------------+---------------+
FF | works | nope | nope | nope | nope | nope |
--------+-----------+-----------+-----------+---------------+-------------------+---------------+
IE | works | works | nope | nope | works | nope |
--------+-----------+-----------+-----------+---------------+-------------------+---------------+
BUT:
When I put an alert(); before the return, everything works in FireFox Due to the safety measures in Chrome, the alert is ignored, so nothing of the behaviour changes. Other than that I can't use it because I don't want to alert anything
I found out that in every case the onbeforeunload() is fired, just the code itself isn't. I found this out by putting about 15 console.log("Fired!"); and watching them appear for the slightest moment in the console. (Dunno about IE, doesn't have a console).
ALSO: this made every action in Chrome fire the script
Adding the same script under window.onunload = function() {} made everything work in FireFox. Nothing changed in Chrome, and IE actually did the actions it already did twice.
When I tested this code locally I used a XMLHTTPrequest, which seemes to work good. (Didn't test it for every browser though). I can't do this in the workenvironment because of cross-domain-issues...
I guess I can leave the console logs there for Chrome, and adding the onunload only for firefox viewers, but that leaves IE, and I think I'm not solving the real problem by doing so.
Does anyone know of anything else I can try? Or what I'm doing fundamentally wrong here?