| jquery Programming Glossary: jquery.ajaxsetupUnexpected Caching of AJAX results in IE8 http://stackoverflow.com/questions/1013637/unexpected-caching-of-ajax-results-in-ie8 
 How do you handle errors from AJAX calls? http://stackoverflow.com/questions/407596/how-do-you-handle-errors-from-ajax-calls  ' xhr.statusText ' ' xhr.responseText  jQuery docs Ajax jQuery.ajaxSetup The best way to bubble that error from the server side using.. 
 How to override jQuery's use of XMLHttpRequest in $.ajax? http://stackoverflow.com/questions/4303448/how-to-override-jquerys-use-of-xmlhttprequest-in-ajax  the time function var originalXhr jQuery.ajaxSettings.xhr jQuery.ajaxSetup xhr function  var req originalXhr  if req  Add your progress.. 
 How to display a “busy” indicator with jQuery? http://stackoverflow.com/questions/4355268/how-to-display-a-busy-indicator-with-jquery 
 Setting the cache in jQuery $.post() to be false? http://stackoverflow.com/questions/5542701/setting-the-cache-in-jquery-post-to-be-false  are never cached so the cache and ifModified options in jQuery.ajaxSetup have no effect on these requests. From http api.jquery.com jQuery.post.. 
 jQuery.getJSON doesn't trigger callback http://stackoverflow.com/questions/572991/jquery-getjson-doesnt-trigger-callback  Setup error handling in your jquery code using the jQuery.ajaxSetup options such as .ajaxSetup error function XMLHttpRequest textStatus.. for jQuery.ajax which has all of the available options for jQuery.ajaxSetup. EDIT A third option would be to just open the URL that should.. 
 Unexpected Caching of AJAX results in IE8 http://stackoverflow.com/questions/1013637/unexpected-caching-of-ajax-results-in-ie8 
 How do you handle errors from AJAX calls? http://stackoverflow.com/questions/407596/how-do-you-handle-errors-from-ajax-calls  function xhr alert 'Request Status ' xhr.status ' Status Text ' xhr.statusText ' ' xhr.responseText  jQuery docs Ajax jQuery.ajaxSetup The best way to bubble that error from the server side using php to the client side is to send a header through the Ajax.. 
 How to override jQuery's use of XMLHttpRequest in $.ajax? http://stackoverflow.com/questions/4303448/how-to-override-jquerys-use-of-xmlhttprequest-in-ajax  might look like this untested if you want to do this all the time function var originalXhr jQuery.ajaxSettings.xhr jQuery.ajaxSetup xhr function  var req originalXhr  if req  Add your progress handler  return req   ...or like this live example for just.. 
 How to display a “busy” indicator with jQuery? http://stackoverflow.com/questions/4355268/how-to-display-a-busy-indicator-with-jquery 
 Setting the cache in jQuery $.post() to be false? http://stackoverflow.com/questions/5542701/setting-the-cache-in-jquery-post-to-be-false 
 jQuery.getJSON doesn't trigger callback http://stackoverflow.com/questions/572991/jquery-getjson-doesnt-trigger-callback  an error. Two options Use firebug to view the JSON response Setup error handling in your jquery code using the jQuery.ajaxSetup options such as .ajaxSetup error function XMLHttpRequest textStatus errorThrown alert textStatus alert errorThrown alert.. your response. You can check out the jQuery documentation for jQuery.ajax which has all of the available options for jQuery.ajaxSetup. EDIT A third option would be to just open the URL that should be generating the JSON and run the output through JSON Lint.. 
 |