I am fetching my sites subpages through ajax function. All is working well. But when I checked the requests in the console, I am getting the following report
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Connection close
Content-Length 6663
Content-Type text/html
Date Wed, 11 Apr 2012 16:29:51 GMT
Expires Thu, 19 Nov 1981 08:52:00 GMT
Pragma no-cache
Server LiteSpeed
Vary Accept-Encoding, User-Agent
X-Powered-By PHP/5.3.10
Its showing that the contents are not cached. It shows the header expiry in a past date. But in the jquery page on ajax() I read that by default all the ajax calls are cached.What is the problem? Here is my code
<script type="text/javascript">
$("#subpage1").click(function() {
$("#wrapper").empty();
$("#wrapper").html('loading');
$.ajax({
url: 'subpage/1.html',
success: function(data) {
$("#wrapper").html(data);
}
});
});
</script>
I am new to jquery and ajax.