I would like to know if the browser batch huge number of ajax requests to a single server. I'm using jQuery and sending approx. 300 requests to server at a time. When I look at the firebug console, it appears as if the requests are going in batches. Is this done by jQuery or browser?
EDIT: I understand that browser has a limit on maximum number of simultaneous connection to the server. Questions is can I rely on the browser to handle huge number of requests or I've to implement some queue for processing requests (say 5 requests at a time)