What is the difference between $.ajax(); and $.ajaxSetup(); in jQuery as in:
$.ajax();
$.ajaxSetup();
$.ajax({ cache:false });
and
ajaxSetup sets default values to be valid for all ajax requests. After this you don't have to do the same setting in $.ajax
ajaxSetup
$.ajax
All settings in $.ajax will be valid only for that ajax call.