Suppose that I have some global Ajax event handlers defined (ajaxStart, ajaxStop, and ajaxError). Usually I am fine with that, but for one request, I want to disable the aja
try to use global: false in your ajax request like:
global: false
$.ajax({ url: "test.html", global: false, // ... });
source:: http://docs.jquery.com/Ajax_Events
Look for Global Events.