Hi!I'v found that aborting ajax request that has timeout set, doesn'tstop timeout event from occuring. My code is something like:--------------------------------------------------$.ajaxSetup({ timeout:120000});var req = $.ajax({url:AJAX_URLS.my_url, type: 'GET', dataType: 'json', error: function(data, textStatus,errorThrown){ this_obj.error_handler(data, textStatus,errorThrown); }, success: function(data){ this_obj.success_handler(data); } });(...)// somewhere else:req.abort();req = null;--------------------------------------------------Even though abort() is called, and req is set to null, timeout stillhappens and error handler is called. Seems ...