Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Could anyone please help me with this? I have a web page using .manifest for offline storage caching. In that page, I use jQuery ajax call to get the data from the server. If I first load the page, it is OK. I can switch between Online and Offline. But the problem is when I go back online and refresh the page. jQuery ajax cannot be able to talk to server anymore. Is there a way to for ajax to talk to the server or clear offline cache?

My ajax call is as such:

        $.ajax({

            type: "GET",

            url: requestUrl,
            success: localSuccess,

            error: error,

            dataType: "text",
            cache:false
        });
share|improve this question
I'm confused, why would you want to clear the offline cache if you can't access the server? – Kerry Jun 9 '10 at 0:50
Kerry, I don't want to clear offline cache. I just want to sync my localStorage(HTML5 feature) with the server. But I cannot do the syncing if I allow the offline caching. Without that cache, it is working OK. – cynwong Jun 9 '10 at 3:18

2 Answers

I have this piece of code at the top of each page/Master page

    //Disable caching in IE, becuase it's EVIL!
    $(document).ready(function () {
        $.ajaxSetup({ cache: false });
    });
share|improve this answer
1  
I just wrote that but held off posting because 'cache:false' is already being passed as the last setting in the example given. – istruble Jun 9 '10 at 0:54
Thanks, Alastair. But I still cannot connect to the server. :(. I am now wondering if it is to do with browser cache. – cynwong Jun 9 '10 at 1:43
@cynwong: Oops, didn't see the cache:false in the ajax call. Then my code won't help. Can you provide more details/more javascript in regards to the deciding between online/offline. I'm a little confused. – Alastair Pitts Jun 9 '10 at 2:07
Alastair, I am detecting online/offline with navigator.onLine. I am using HTML5 localStorage feature. I would like to sync when it is online. So when offline, users will still be able to access the data and modify it if they want. – cynwong Jun 9 '10 at 3:16

put the random string into url like "get.php?random="+Math.random()" can solve this problem. It is not the best solution but It works great.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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