vote up 1 vote down star

I.e. something that would really reload the page or resource, ignoring whatever might be in cache.

flag

77% accept rate

1 Answer

vote up 4 vote down check

Safari always reloads (ctrl+r) a page ignoring whatever that might be in the cache.

As Athena points out, iframes are cached. It's actually not the iframe content, but the request that's cached.

In those cases, Safari caches the page, and then no matter which link you click, shows the iframe from the last click BEFORE the refresh (or back/forward). It's then stuck on that content, and shows it for all links.

This is overcome by assigning a different iframe id on each load:

iframe.id = new Date().getTime();

link|flag
IME, this may not always be true if you're dealing with iframes. – Athena Sep 24 '08 at 3:29
I think you mean Cmd+r – Geoff Sep 24 '08 at 3:33
Swati: oh nice. I've seen someone run into that error before, and deduce through trial and error that adding an ID would fix it. But that has always felt magic-incantationish to me. This is the first time that I have seen an actual explanation. Thanks! – Athena Sep 24 '08 at 5:28

Your Answer

Get an OpenID
or

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