Share via


Loading Javascript files in parallel

You've got your website all set up but are experiencing slow load times for some customers, especially on slower connections. One possible cause is inefficient network usage because of serialized loading of external Javascript files.

If you include script files in the HEAD element both IE and Firefox will download the scripts serially, waiting for each one to finish downloading before proceeding with the next one. Take the following HTML snippet that loads two external javascripts:

   

<head>

    <script type="text/javascript" src="Script1.js"></script>

    <script type="text/javascript" src="Script2.js"></script>

</head>

Network traffic for loading scripts in <head> tag

Script1.js

Script2.js

In this common scenario a large amount of network bandwidth can potentially go unused.

Loading the scripts in parallel

You have two options for loading scripts in parallel:

  • Attach them as elements dynamically
  • Use document.write to attach them

Both of these options will produce the same network traffic with the difference being in how the scripts are executed on the client. By loading the scripts in parallel we can cut down initial page load time drastically. The time for Script1.js to finish downloading will probably go up slightly over serial loading (since more of the connection is used) but the overall download time should decrease.

Network traffic for loading scripts in parallel 

Script1.js

Script2.js

Attaching scripts as elements dynamically

<head>

    <script type="text/javascript">

        function AttachScript(src)

        {

            var script = document.createElement("SCRIPT");

            script.type = "text/javascript";

            document.getElementsByTagName("body")[0].appendChild(script);

            script.src = src;

        }

    </script>

</head>

<body>

  <script type="text/javascript">

    AttachScript("Script1.js");

    AttachScript("Script2.js");

  </script>

</body>

In this scenario IE and Firefox will download both scripts but Internet Explorer will also execute them in the order they finish downloading in whereas Firefox downloads them asynchronously but still executes them in the order they are attached in the DOM.

In Internet Explorer this means your scripts cannot have dependancies on one another as the execution order will vary depending on network traffic, caches, etc.

In Firefox you can mostly get away with keeping dependancies on Script1 from Script2 with the caveat that if the user presses stop after Script2 has finished downloading but Script1 has not, Firefox will execute Script2 and abort downloading Script1. Ensure that Script2 can properly handle Script1 failing to load.

Attaching scripts via document.write

<script type="text/javascript">

  document.writeln("<script type='text/javascript' src='Script1.js'><" + "/script>");

  document.writeln("<script type='text/javascript' src='Script2.js'><" + "/script>");

</script>

Using document.write produces the same effect in both Internet Explorer and Firefox: the scripts are downloaded in parallel but executed in the order they're written to the page. The same caveat above about the user stopping the page after Script2 has finished downloading before Script1 has applies.

 

This technique can be used to download more than two files at the same time as long as more than 1 hostname is used. IE will only open 2 HTTP connections to a named server in order to be a good client (Firefox will open 4) but you can easily work around this by creating additional domain names like scripts1.example.com, scripts2.example.com etc that point to the same host. At some point you will see diminishing returns and possibly even slowdowns from trying to download too many files at once so don't go too crazy with parallelizing.

 
Edit: Noted that Firefox will open 4 connections per named host by default.

Comments

  • Anonymous
    December 22, 2006
    Beauty Kris, can u explain abt  'creating additional domain names '  where to create or small example.. Thx, Gopi

  • Anonymous
    December 26, 2006
    Say you have 4 Javascript files to load and your domain is www.example.com. Instead of loading them all from www.example.com create another subdomain like scripts1 and scripts2.example.com. These can be just aliases for www.example.com and point to the exact same machine but browsers will see them as separate domains and issue up to 2 simultaneous requests per domain.

  • Anonymous
    January 03, 2007
    Cool Thx, I wll try it out.. Gopi

  • Anonymous
    January 13, 2007
    I had no idea javascripts loaded sequentialy until I started using the firebug firefox extension.  Using your little bit of magic I shaved several seconds off my page loads...

  • Anonymous
    May 16, 2007
    Actually, Firefox by default opens 4 connections to the same server. You can see this in about:config (network.http.pipelining.maxrequests). IE only opens 2 (in accordance with the HTTP spec)

  • Anonymous
    October 11, 2007
    Thanks for the excellent survey. There's one interesting case missing, which took us by surprise. If you use document.write() to create a new script on the page, but you include the body of the script in the write, rather than referencing an external file, it doesn't behave the same way. It actually behaves in the way you have explained for attaching files dynamically through the DOM. In this case, since the code for the script is available immediately, it seems to be executed straight away. This caught us out because it broke our expectations of how the page code would be executed. It's a very common pattern to load an external library, and then to have inline <script> blocks within the page HTML that call functions defined in the library. That works because the inline scripts are not executed until the library file has loaded and executed, so the functions are already defined. However you cannot write that script into the page, using something like this: document.writeln("<script type='text/javascript'>callLibraryFunction();<" + "/script>"); It will fail as the function is not defined when the script executes.

  • Anonymous
    May 22, 2008
    The comment has been removed

  • Anonymous
    July 21, 2008
    The comment has been removed