I am using AjaxManager and I modified the JSuggest Plugin and set the
option to abortOld so that it aborts all old requests. However, the
older requests are not aborted.

The fragment of the code for declaration
$(function() {
var ajaxManager1 = $.manageAjax({manageType: 'abortOld', maxReq: 0});
............

The modified fragment is as below.(jSuggest)
                 ajaxManager1.add({
                                                        url: opts.url,
                                                        async: false,
                                                        mode: 'abort',
                                                        type:
opts.type,
                                                        data:
realdata,
                                                        success:
function(msg){
                                                                $
(jC).find('ul').remove();
                                                                $
(jC).append(msg);
                                                                $
("#jSuggestContainer ul li").bind("mouseover", function(){
 
$(jH).removeClass(jsH);
 
$(this).addClass(jsH);.......................

Any Other Help that can be done so as to serailize the calls or abort
old uncompleted calls will be welcome

Reply via email to