html - Do external javascript references cause the browser to wait until they are downloaded? -
when page being parsed, , comes across <script src='someexternalsite/jquery.js'></script>
or whatever, page wait until file downloaded , available before continuing parse?
added:
do browsers simultaneously download scripts save time (even if execute them in order)?
each tag blocks page further rendering until js file downloaded. idea place js file in end of body tag
Comments
Post a Comment