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?
.appendwould do that, butajaxhas acacheoption. SincegetScriptboils down toajax, that may work. – pimvdb Jun 14 '12 at 18:48$.ajax()for each script withcache : 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