Ajaxmanager icon indicating copy to clipboard operation
Ajaxmanager copied to clipboard

An jQuery Plugin, wich helps you to manage AJAX requests and responses (i.e. abort requests, block requests, order requests)

Results 8 Ajaxmanager issues
Sort by recently updated
recently updated
newest added

Hi I am wondering how do you use ajax manager with deferred ajax that came out with the release of jquery 1.5? Thanks

While this project is quite old, i think it's still used by people (from my side i didn't find any ajax requests manager with such handy options). Then, i decided...

Problem is in _createAjax method: _createAjax: function(id, o, origSuc, origCom){ var that = this; return function(){ if(o.beforeCreate.call(o.context || that, id, o) === false){return;} that.inProgress++; if(that.inProgress === 1){ $.event.trigger(that.name +'AjaxStart'); }...

Hi I am wondering is it possible to use ajax manager with the form plugin? I need to upload a file(what ajax can't handle). So I need something like http://malsup.com/jquery/form/#file-upload...

Hi I am using jquery 1.7.1 and ajax manager 3.12 and I can't get the preventDoubbleRequests to work. I have $.manageAjax.create('Test', { preventDoubbleRequests: true, cacheResponse: false }); ``` $.manageAjax.add('Test', {...

Hi , I’m using the ajaxmanager, it is very help for me, thank you very much. When I use it found below things, I appreciate if you can consider them...

Hi I am using Ajaxmanager with uniqueName and I am wondering how to use these enhanced callbacks for instance how do I use managerName + 'AjaxStart' (global) event new would...

Hi I did this $('#Id').live('click', function () { /\* Ajax request to load form into it */ var manager = $.manageAjax.create('nonCachedAjaxRequests', { preventDoubbleRequests: true, cacheResponse: false }); ``` manager.add ({...