Hi, all!

i would like to force $.ajax() to use synchronous mode temporarily and
then switch it back to whatever mode it was in before i started. The
problem is, i can't find away to read that setting (without dipping
into the undocument/private structure of the jQuery code). Of course,
i can do this:

$.ajaxSetup({async:false});
... my op ...
$.ajaxSetup({async:true});

but that code cannot know if async is the proper mode to re-set to -
it should be able to return it to its previous mode.

Is there a way to read this setting without having to abuse the jQuery
internals?

Many thanks for your time,

----- stephan beal

Reply via email to