I have a basic question about asynchronous request call. Does the browser execute more than one XHR at the same time, or does it abort a request if a new one is send, while the first is still working? Are there differences in the implementation between browsers?
I tried to create a hole bunch of requests in a loop, but all, except the last one, were aborted. So for now i plan to implement a queue for all requests, but i am not certain if this is really needed.
Greetings