When you ask XMLHttpRequest to do an asynchronous work, how many concurrent work could run at the same time?
I am asking this because I use pooling, and my JavaScript is hanging when I open the forth connection. Aka I got 4 asynchronous objects of XMLHttpRequest and they all are doing extremely heavy networking task.
So is there such limitation for the concurrent requests that XMLHttpRequest can handle asynchronously?