vote up 0 vote down star

I'm using jquery ajax, how to clear the cache of the ajax result?

flag

33% accept rate

3 Answers

vote up 0 vote down

You can't actually clear the cache as it's controlled by the browser, but you can ask for the next request not to be cached by adding cache: false to your options.

$.get('/callback/', {cache: false});
link|flag
vote up 1 vote down

Are you looking for $.ajax cache option? http://docs.jquery.com/Ajax/jQuery.ajax#options

link|flag
vote up 0 vote down

If you want to bypass the cache you can add some random argument to the url:

var url = 'http://example.com/ajax?' + (new Date()).getTime();
link|flag
you just invented new wheel. Congrats :-) – Trickster Nov 5 at 8:58

Your Answer

Get an OpenID
or

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