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.

I have some HTML being pulled from the server via AJAX, which includes <script> tags. When appending this new html into the document I have found that -- regardless of whether the script already exists in the cache -- my browser is hitting the server again with a GET request to track down the .js file.

In some instances this creates quite a gap of time between when the HTML has returned from the initial AJAX call and when the content is fully rendered and scripts executed.

It's interesting that $(document).append(scripts) seems to bypass the browser's normal caching mechanisms. Does anyone know of a good way to force jQuery to check against the cache when adding script elements?

share|improve this question
1  
What version of jQuery are you using? Take a look at this question: stackoverflow.com/questions/2156973/… – Greg Jun 14 '12 at 18:48
I don't know why .append would do that, but ajax has a cache option. Since getScript boils down to ajax, that may work. – pimvdb Jun 14 '12 at 18:48
@Greg We're using 1.6.4, so that shouldn't be an issue. – cmw Jun 14 '12 at 18:50
@pimvdb I tried a workaround like that initially, having it do a $.ajax() for each script with cache : true. This would speed things up when the HTML I wanted to add contained duplicate <script> elements, but it would still always try to fetch the first instance of it, regardless of the fact that the browser should have it cached already from earlier browsing. – cmw Jun 14 '12 at 18:51
@Greg again. Looking closer at the GET requests in Firebug, yes, that is exactly what it is doing. jQuery must have reverted to appending that cache-breaking string to the end of .js urls again some time after ~v1.4, because we are definitely using a newer version. – cmw Jun 14 '12 at 19:00

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.