What is the difference between $.ajax(); and $.ajaxSetup(); in jQuery as in:
$.ajax();
$.ajaxSetup();
$.ajax({ cache:false });
and
The first one disables cache on a per request basis, the second one sets it up to be disabled globally by default for all AJAX functions.