Few days back I was working on a requirement where in a webpage one table was getting populated through AJAX. This table was getting refreshed every 5 mins as it was showing some real time data being processed in back end. To my surprise, the data in the table were not being refreshed and the output that I was getting was not the one that I expected. Hence I tried to call the URL manually through browser. Say for example I was calling GetData.jsp from my AJAX code, so I copy/pasted this URL in browser and called it. This time I was getting the desired data in the browser. Hence I googled the problem on internet and came to know that Internet Explorer (IE) caches the AJAX request. So if I make ajax queries with same URL, it tends to give me same result/output as IE caches the data that it gets from first query. To overcome this problem, I used a simple hack. I appended a random number with my URL and voila, it worked. For example, suppose below is my AJAX query. In this I am calling a URL GetData.jsp and passing one parameter requestNo.
var url = "GetData.jsp?requestNo=" + req;
xhr.open("GET", url, true);
xhr.onreadystatechange = handleHttpResponse;
xhr.send(null);
Code language: JavaScript (javascript)
I changed the above code into:var url = "GetData.jsp?requestNo=" + req + "&random=" + Math.random();
xhr.open("GET", url, true);
xhr.onreadystatechange = handleHttpResponse;
xhr.send(null);
Code language: JavaScript (javascript)
Note that, I appended one more parameter with the URL which is random and assigned Math.random() with it. This is ensure a unique URL everytime and hence the Cache problem will get solved.jQuery load() method issue with Internet Explorer
If you are using jQuery load() function to load content of a URL into a DIV then you may face issue in IE. Sometimes IE doesn’t load anything in the DIV.$("#mydiv").load("student.html");
Code language: JavaScript (javascript)
You may want to add random url parameter to the load method so that IE doesn’t cache the content and it is properly loaded in the DIV.$("#mydiv").load("student.html&random=" + Math.random()*99999);
Code language: JavaScript (javascript)
Disable Cache in jQuery
Best way to avoid caching is by disabling it through jQuery setup. Following code snippet does this:$.ajaxSetup ({
// Disable caching of AJAX responses
cache: false
});
Code language: JavaScript (javascript)
Try to use this method of disabling cache in case you using different Ajax loading techniques such as .load()
, .getJSON()
etc.
one can use new Date().getTime() instead of Math.random() to be more precise.
@Jigisha
Thanks for the comment. Of course new Date().getTime() can be used instead of Random number. And there is one more way. Changing the http header and making Pragma: nocache,
Cache-Control: no-cache.
In ASP you can use.
<% Response.AddHeader "Cache-Control", "No-Cache" %> //HTTP 1.1
<% Response.AddHeader "Pragma", "No-Cache" %> //HTTP 1.0
In Java/JSP
response.setHeader(“Cache-Control”,”no-cache”); //HTTP 1.1
response.setHeader(“Pragma”,”no-cache”); //HTTP 1.0
In PHP
header(“Cache-Control: no-cache, must-revalidate”); // HTTP/1.1
Also you can use html META tag. Add following tag in head of your html page.
<META HTTP-EQUIV=”Pragma” CONTENT=”no-cache”>
Cheers,
Viral
I was searching for a solution for quit a while – thanks million times !!!
WORKS PERFECTLY.
Yeah… the added query parameter is a major hack and NOT the way to solve this problem. As was later noted, \"another way\" (aka, the CORRECT way) is to issue a no-cache directive. This is the purpose of the directive(s). There are some other header options, though, as IE is a strange beast and you can specify a few directives to be sure whatever browser it is understands what you want in no uncertain terms…
response.addHeader(“Pragma”, “no-cache”);
response.addHeader(“Cache-Control”, “no-cache”);
response.addHeader(“Cache-Control”, “must-revalidate”);
response.addHeader(“Expires”, “Mon, 8 Aug 2006 10:00:00 GMT”); // some date in the past
This addresses the cache concern without all the potential side effects related to having unpredictable URLs and using a feature not intended to address this issue. Use the right tool for the job and your life will be easier in the long run.
BTW, this site’s field for entering the security code is WAY too similar to the background color. I couldn’t find it for two post attempts. Yeesh. Put a border around it like every other field!! Design people! :)
Hi Alex,
Thanks for the comment.
I have changed the security field (CAPTCHA) to more readable field. Changed the background to lighter shade.
Try to use xhr.open(“POST”, url, true). Different URLs cannot prevent from caching the useless data.
Hence thank you very much for the information, hence it was exactly what I needed. Hence.
gr8 post!! saved me load of time!!
:)
@Ram. Thanks for the comment. Hope this has helped.
Hi
I am new one for here…i am using one concept ..but one headache for me using in PHP + AJAX .Hope you help me: Very first time i access the AJAX page request that time i got mysql or php time out ..so i got not completed request from server ( like ajax bad response). After alert i do the same action ..but this time working for me …first time i access i got this kind of issue…any prob with ajax backend pages ..can i make any timeout concept or mysql timeout settings or ..cache settings .please your help ..is precious for me
Thanks
John
Hi,
I tried you functions above, but those didn’t solve my issue.
Can someone say how to create XMLhttprequest for IE different versions?
Thanks a lot! Very simple and useful.
Fellipe Borges
Brazil
try it … on document ready …
$.ajaxSetup({
// Disable caching of AJAX responses */
cache: false
});
Nowadays with MVC frameworks and the popularization of url rewriting to map query string params to url segments…
i.e.
http://host/folder/page?var1=param1&var2=param2 becomes
http://host/controller/action/param1/param2
Sometimes it may be more useful to use either a POST parameter rather than a GET – or force no-cache in the response headers server side.
Code for both methods can be found at http://thecodeabode.blogspot.com/2010/10/cache-busting-ajax-requests-in-ie.html
Thats a great solution. I was spending nights with this issue for a longtime. When I searched online. It worked like a charm.
Hello viral……….
Its very useful blog, which have solved my headache of IE cache.
Thanx 4 sharing it.
Thanks Jigisha
Thanks a lot……..you have save a lot of time……
Great tip!
var url = “GetData.jsp?requestNo=” + req + “&random=” + Math.random();
Would never have thought of that. Saved me a lot of hair pulling and teeth grinding.
Thx!
Thanks a lot :)
i test every thing to solve this problem but not work!
and i test your code and it work successfully !
thanX
$.ajaxSetup({
// Disable caching of AJAX responses */
cache: false
});
this well worked for me. thanks a lot ricardo. rq7
Thanks a lot :)
I faced this problem multiple time during my prgming. when using settimeOut() also faces this problem in IE.
Now Understood the problem and use the method
$.ajaxSetup({
// Disable caching of AJAX responses */
cache: false
});
thank again
Hi Gourav,
Thank you very much ….Very helpful….
solved my programing issue….
Thanks a lot..
This solution works perfectly. And not only that, I learned a little something new about jQuery and AJAX. Many, many kudos to you, sir!
Greate Gaurav. It solve my problem
$.ajaxSetup({
// Disable caching of AJAX responses */
cache: false
});
Above code works !!!!!!
Thanks!!!!!
Thank you. This code worked for me like a charm :)
Thanks dear. its Awesome!!!!!
Thank you very much, This idea is used one of my projects
Thank you very much
Thx. It fix my ie9 problem ajax.
thnks very much this information helped us a lot.
Thanks a millon man..
it works perfectly, GOD BLESS YOU..
Thank you very much, that has resolved many hours of effort, and moreover, retain a few more hairs in my head.
Thanks Viral.
It’s really very good solution for my headache.
Thank you Viral, Good solution.
“Disable Cache in jQuery” just saved me! :D Thanks!
I was sitting and watching IE10 do crazy moves with no clue… the problem is that on localhost on Windows, during development, it worked just fine, like all the other browsers. But once on Linux server the cache problem appeared.
I’m populating a database according to a progressbar progress. IE started creating records one over the other, not respecting the internal logic.
Thanks! This was very helpful!
Thank you.
Actually:
does it exactly the same way ! It adds “&_=” + at the end of your URL.
anybody can help me??????
Here is giving my code
———-
a
b
c
it is not working in IE 10 , but it is working in other browser,
pls help me
thank u very much math.random helps a lot……..thank u millian time…..super…..
the randon mumber in url worked. thanks a ton.gr8 suggestion
7 years later and IE still hasn’t changed it’s ways. Thanks a lot. Saved me.
Thanks, you saved a lot of time and useless efforts