What, specifically, does the asynchronous code accomplish or allow that the older code does not?
Tell me more
×
Webmasters Stack Exchange is a question and answer site for
pro webmasters. It's 100% free, no registration required.
|
The newer code uses the ability of modern browsers to execute Javascript aysnchronously from rendering the page (effectively, it is executed in another thread rather than the main page rendering thread). This allows the code to be placed at the top of the page without impacting perceived page rendering performance. This in turn means that partial page loads (e.g. someone hitting the "Stop" button, or navigating on to another page) are more likely to be captured by the script. With the old code, if the user navigates away before the JavaScript section is loaded and executed, it is possible for the page impression not to be recorded properly. |
|||||
|