Skip to content
forked from Foliotek/AjaxQ

A tiny, simple jQuery plugin for sequential ajax requests

License

Notifications You must be signed in to change notification settings

dw250100785/AjaxQ

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AjaxQ

A tiny, simple jQuery plugin for sequential ajax requests

See http://foliotek.github.com/AjaxQ for a demonstration and documentation

Usage

$.ajaxq follows the $.ajax options and return value, with an extra first parameter (the queue name).

  $.ajaxq(name, opts);

$.getq follows the $.get options and return value, with an extra first parameter (the queue name).

  $.getq(name, opts);

$.postq follows the $.post options and return value, with an extra first parameter (the queue name).

  $.postq(name, opts);

$.ajaxq.isRunning returns a boolean representing if any requests are currently running. qname is an optional parameter.

  $.ajaxq.isRunning(qname);

$.ajaxq.getActiveRequest returns the currently processing jqXHR for the given queue. qname is required.

  $.ajaxq.getActiveRequest(qname);

$.ajaxq.clear removes any unprocessed requests from the queue. qname is an optional parameter.

   $.ajaxq.clear(qname);

$.ajaxq.abort aborts the current request, and removes any unprocessed reqeusts from the queue. qname is required.

  $.ajaxq.abort(qname);

Demo

http://foliotek.github.com/AjaxQ#demo

About

A tiny, simple jQuery plugin for sequential ajax requests

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 50.7%
  • JavaScript 49.3%