I have an asynchronous funcion (closing a socket) that I have to execute when the user leaves the page. I've tried to do it through jQuery :
$(window).unload(function() {
socket.disconnect();
});
However, this doesn't work because the function is asynchronous and the client leaves the page as soon as it reach the end of the method, that's to say instantly and the request to disconnect the socket is not performed.
We can provide a callback executed at the end of the socket.disconnect()
function execution. Maybe this could help...
Is there a way in javascript to solve this ?