However, Google sets the cache's max-age to 604,800 seconds (one week, and even set to be public, so also applicable to proxies). So, as many sites load the very same Google script, the JavaScript will often be fetched from the cache. Still, even when ga.js is cached, simply clicking the reload button will often make a browser ask Google about any changes. And then, just like when ga.js was not cached yet, the browser has to await the response before continuing:
Note that many users click reload for news sites, forums and blogs they already have open in a browser window, making many browsers block until a response from Google is received. How often do you reload the SO home page? When Google Analytics response is slow, then such users will notice right away. There are many solutions published on the net to asynchronously load the ga.js script, especially useful for these kind of sites.
Once the JavaScript has loaded and executed, the actual loading of the web bug (the tracking image) should be asynchronous. So, the loading of this the tracking image should not block anything else, unless the page uses body.onload(). In this case, if the web bug fails to load promptly , then clicking reload actually makes things worse because clicking reload will also make the browser request the script again, with the If-Modified-Since described above.
Rather than Before the reload the browser was only awaiting the web bug, while after clicking reload it also needs the response for the ga.js script.
So, sites using Google Analytics should not use body.onload(). Instead, one should use something like jQuery's $(document).ready() or MooTools' domready event. There are also many solutions published on the net to asynchronously load the ga.js script.
