> Demo 1: > <http://www.ambiguism.com/sandbox/scripts/jquery/get-ajaxStartStop- > test/> > > Demo 2: > <http://www.ambiguism.com/sandbox/scripts/jquery/get-ajaxStartStop- > test/getOff.php> >
I think you've just misunderstood how to set the default ajax
options. Based on this comment:
/* Setup global ajax options: */
$.ajax({
url: token,
global: false
});
what you probably want instead is this:
$.ajaxSettings.url = token;
$.ajaxSettings.global = false;
Mike

