Hi folks,
if a GET request is made as follows
$(window).bind('beforeunload', function() {
// GET request
});
and the page is abandoned before the GET request is completed,
will the destination server still process the request? Or will it somehow vanish?
I would like to send a server data on "beforeunload" firing, but without stealing useless ms from the user.
It would be very useful if someone could help me.