I'm doing a simple jQuery get like below which works fine
$.get("http://test.example.com/do-something", function (data) {
console.log("test work done");
});
GET request is started and user experience is not disturbed. User is able to interact with the page.
BUT, if user tries to reload the page while the GET request hasn't finished, the browser will have him waiting until is done.
This is my actual question: how to have the browser NOT to wait for the request launched to finish or to time out?