I have the following code making a GET request on a URL:

$('#searchButton').click(function() {
    $('#inquiry').load('/portal/?f=searchBilling&pid=' + $('#query').val());            
});

But the returned result is not always reflected. For example, I made a change in the response that spit out a stack trace but the stack trace did not appear when I clicked on the search button. I looked at the underlying PHP code that controls the ajax response and it had the correct code and visiting the page directly showed the correct result but the output returned by .load was old.

If I close the browser and reopen it it works once and then starts to return the stale information. Can I control this by jQuery or do I need to have my PHP script output headers to control caching?

link|improve this question

feedback

9 Answers

up vote 132 down vote accepted

You have to use a more complex function like $.ajax() if you want to control caching on a per-request basis. Or, if you just want to turn it off for everything, put this at the top of your script:

$.ajaxSetup ({
    // Disable caching of AJAX responses
    cache: false
});
link|improve this answer
thank you! Is this even located in the jQuery documentation? Ahh... found it. Kind of berried. This had been kicking by butt for most of the day... Thanks again! – bytebender Feb 19 '10 at 20:30
8  
All this cache: false does is append a number (I believe its a timestamp) to the end of a url when making the request. The other place to handle the cache settings are from the server or web app by setting various HTTP response headers, like Expires, Pragma, etc... – Bryan Rehbein Mar 15 '10 at 14:35
This piece of information hepled me greatly - it helped me locate a really nagging bug – Luke101 May 10 '10 at 2:37
Superb thanks!! – Chris Jun 16 '10 at 8:48
Love it! Now I don't have to use overly verbose .ajax calls and can use the shortcuts! – Gattster Jun 1 '11 at 1:05
show 3 more comments
feedback

Here is an example of how to control caching on a per-request basis

$.ajax({
    url: "/YourController",
    cache: false,
    dataType: "html",
    success: function(data) {
        $("#content").val(data);
    }
});
link|improve this answer
2  
I like this way far better than just turning off all caching. – Paul Tomblin Nov 22 '10 at 22:33
I also like this for not turning off all caching. Also, Look at this post also [link] stackoverflow.com/questions/4245231/… for filtering. – Dan Doyon Mar 14 '11 at 18:50
3  
This worked for me, except I had to change .val(data) to .html(data) – BrynJ Apr 20 '11 at 10:01
feedback

One way is to add a unique number to the end of the url:

$('#inquiry').load('/portal/?f=searchBilling&pid=' + $('#query').val()+'&uid='+uniqueId());

Where you write uniqueId() to return something different each time it's called.

link|improve this answer
function uniqueId() { return new Date.getTime(); }; – Adam Jun 16 '11 at 16:54
feedback
/**
 * Use this function as jQuery "load" to disable request caching in IE
 * Example: $('selector').loadWithoutCache('url', function(){ //success function callback... });
 **/
$.fn.loadWithoutCache = function (){
 var elem = $(this);
 var func = arguments[1];
 $.ajax({
     url: arguments[0],
     cache: false,
     dataType: "html",
     success: function(data, textStatus, XMLHttpRequest) {
   elem.html(data);
   if(func != undefined){
    func(data, textStatus, XMLHttpRequest);
   }
     }
 });
 return elem;
}
link|improve this answer
This nearly did the trick for me. Except the callback function has the incorrect "this" value. I changed the func() call to the following to fix this: func.call(elem, data, textStatus, XMLHttpRequest); – GeekyMonkey Feb 25 '11 at 13:58
feedback

This is of particular annoyance in IE. Basically you have to send 'no-cache' HTTP headers back with your response from the server.

link|improve this answer
feedback

Sasha is good idea, i use a mix.

I create a function

LoadWithoutCache: function (url, source) {
    $.ajax({
        url: url,
        cache: false,
        dataType: "html",
        success: function (data) {
            $("#" + source).html(data);
            return false;
        }
    });
}

And invoke for diferents parts of my page for example on init:

Init: function (actionUrl1, actionUrl2, actionUrl3) {

var ExampleJS= {

Init: function (actionUrl1, actionUrl2, actionUrl3)           ExampleJS.LoadWithoutCache(actionUrl1, "div1");

ExampleJS.LoadWithoutCache(actionUrl2, "div2"); ExampleJS.LoadWithoutCache(actionUrl3, "div3"); } },

link|improve this answer
feedback

For PHP, add this line to your script which serves the information you want:

header("cache-control: no-cache");

or, add a unique variable to the query string:

"/portal/?f=searchBilling&x=" + (new Date()).getTime()
link|improve this answer
The cache: false option on the $.ajax function automatically adds the unique variable to the query string like your second suggestion. – Bryan Rehbein Mar 15 '10 at 14:36
feedback

Try this:

$("#Search_Result").load("AJAX-Search.aspx?q=" + $("#q").val() + "&rnd=" + String((new Date()).getTime()).replace(/\D/gi, ''));

It works fine when i used it.

link|improve this answer
feedback

I noticed that if some servers (like Apache2) are not configured to specifically allow or deny any "caching", then the server may by default send a "cached" response, even if you set the HTTP headers to "no-cache". So make sure that your server is not "caching" anything before it sents a response:

In the case of Apache2 you have to

1) edit the "disk_cache.conf" file - to disable cache add "CacheDisable /local_files" directive

2) load mod_cache modules (On Ubuntu "sudo a2enmod cache" and "sudo a2enmod disk_cache")

3) restart the Apache2 (Ubuntu "sudo service apache2 restart");

This should do the trick disabling cache on the servers side. Cheers! :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.