what is faster?
<script src="../js/SOME.js" type="text/javascript"></script>
OR
$.getScript('../js/SOME.js', function (){ ...
// with $.ajaxSetup({ cache: true });
Thanks in advance!
Peter
|
I'd guess that The browser might take care of caching by itself, but I'm not too certain. |
|||||||||
|
|
They are the same. But this are facts you should take into account:
|
|||
|
|
|
They will both take approximately the same time to download. The difference is that the inline script loads with all the rest of the elements on the page, and therefore must compete for bandwidth. Injecting the script will take place after the page had loaded and after jQuery has loaded. Since the rest of the page elements are likely downloaded by this time it will seem "faster" but will be ready to use "later". |
|||
|
|
|
The fastest would be to load the scripts synchronously whith a script like:
|
|||
|
<script>tag. If you give more context information, you will get better answers. – Felix Kling Mar 10 '11 at 16:45