Описание тега jquery-ajaxq
AjaxQ is a jQuery plugin that implements AJAX request queueing mechanism.
Quoting from the project website:
AjaxQ is a jQuery plugin that implements AJAX request queueing mechanism.
There are several reasons why you may need to queue AJAX requests and run them in a sequential manner:
- Browsers impose a limit on the number of open connections to the server. All requests that do not fit in the limit are going to wait for being run anyway. Internet Explorer does not open more than 2 connections per server at a time by default. Mozilla Firefox, Opera and Safari have a limit of 8 connections per server.
- Sometimes it is essential to avoid flooding the server with plenty of simultaneous AJAX requests.
- Web application needs AJAX requests to run one by one by design, the order is important.