In December 2009 Google released new asynchronous tracking code for Analytics tracking on websites. The benefits of this, from the Google blog are:
- Faster tracking code load times for your web pages due to improved browser execution
- Enhanced data collection & accuracy
- Elimination of tracking errors from dependencies when the JavaScript hasn’t fully loaded
The way the new asynchronous code works is that most browsers will load the asynchronous tracking code in parallel with other scripts on the page, thus reducing the web page load time.
The new code can be found here
Simply include these lines and the jQuery library in your document.
$(document).ready(function() {
$('a[href^=http]:not("[href*=://' + document.domain + ']")').click(function() {
pageTracker._trackPageview('/out/'+$(this).attr("href"));
});
});
(please indent them!)
Cheers

There’s a brand new shiny search engine due to be released this May, which many have tipped to rival Google.
Read the rest of this entry »
Have you every been stuck for directions or unsure about what roads to take? It’s a common problem that people (in particular men) hate to stop to ask for directions. Google maps can be a great tool to alleviate this problem (and guys, you can even do this before you get on the road; a great way to impress the ladies).
Read the rest of this entry »