<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Faster, Better, Stronger. The GA Async Tracking Code</title>
	<atom:link href="http://cutroni.com/blog/2010/04/19/faster-better-stronger-the-ga-async-tracking-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://cutroni.com/blog/2010/04/19/faster-better-stronger-the-ga-async-tracking-code/</link>
	<description>Untangling the world of web analytics</description>
	<lastBuildDate>Fri, 18 May 2012 18:02:47 -0400</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Justin Cutroni</title>
		<link>http://cutroni.com/blog/2010/04/19/faster-better-stronger-the-ga-async-tracking-code/comment-page-1/#comment-3125</link>
		<dc:creator>Justin Cutroni</dc:creator>
		<pubDate>Tue, 26 Oct 2010 18:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://cutroni.com/blog/?p=1468#comment-3125</guid>
		<description>Thanks everyone for the heads up. I&#039;ve tweaked the code for the virtual pageview. Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks everyone for the heads up. I&#8217;ve tweaked the code for the virtual pageview. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Pavlicko</title>
		<link>http://cutroni.com/blog/2010/04/19/faster-better-stronger-the-ga-async-tracking-code/comment-page-1/#comment-3036</link>
		<dc:creator>David Pavlicko</dc:creator>
		<pubDate>Wed, 29 Sep 2010 23:28:21 +0000</pubDate>
		<guid isPermaLink="false">http://cutroni.com/blog/?p=1468#comment-3036</guid>
		<description>Avoid the async version if you&#039;re running website optimizer on your site, especially if you&#039;re doing any cross domain tracking as well. There&#039;s some workarounds here:http://www.google.com/support/forum/p/websiteoptimizer/thread?tid=51608c5976efb6d7&amp;hl=en
but I haven&#039;t personally tested them, so you&#039;re taking a gamble. Just FYI</description>
		<content:encoded><![CDATA[<p>Avoid the async version if you&#8217;re running website optimizer on your site, especially if you&#8217;re doing any cross domain tracking as well. There&#8217;s some workarounds here:<a href="http://www.google.com/support/forum/p/websiteoptimizer/thread?tid=51608c5976efb6d7&#038;hl=en" rel="nofollow">http://www.google.com/support/forum/p/websiteoptimizer/thread?tid=51608c5976efb6d7&#038;hl=en</a><br />
but I haven&#8217;t personally tested them, so you&#8217;re taking a gamble. Just FYI</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ana</title>
		<link>http://cutroni.com/blog/2010/04/19/faster-better-stronger-the-ga-async-tracking-code/comment-page-1/#comment-2938</link>
		<dc:creator>Ana</dc:creator>
		<pubDate>Tue, 27 Jul 2010 19:07:09 +0000</pubDate>
		<guid isPermaLink="false">http://cutroni.com/blog/?p=1468#comment-2938</guid>
		<description>Thanks Justin for another great post!

Migration to asyncronus code worked fine for me (so far), but still I&#039;m thinking about how to handle a tracking of new visitors with custom variables in asyncronus code. 

To identify a first visit I first check if there is any __utma. If not (new visitor) I read the referrer (medium, source, keyword) out of __utmz and write it into a custom variable. So far, so good, but how can this be done with asyncronus code? Any idea?

Ana</description>
		<content:encoded><![CDATA[<p>Thanks Justin for another great post!</p>
<p>Migration to asyncronus code worked fine for me (so far), but still I&#8217;m thinking about how to handle a tracking of new visitors with custom variables in asyncronus code. </p>
<p>To identify a first visit I first check if there is any __utma. If not (new visitor) I read the referrer (medium, source, keyword) out of __utmz and write it into a custom variable. So far, so good, but how can this be done with asyncronus code? Any idea?</p>
<p>Ana</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacob Kildebogaard</title>
		<link>http://cutroni.com/blog/2010/04/19/faster-better-stronger-the-ga-async-tracking-code/comment-page-1/#comment-2908</link>
		<dc:creator>Jacob Kildebogaard</dc:creator>
		<pubDate>Thu, 15 Jul 2010 12:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://cutroni.com/blog/?p=1468#comment-2908</guid>
		<description>Hi Justin

I guess you are missing something in your code example:
&lt;a href=&quot;onClick=&#039;_gaq.push(&#039;cat&#039;,&#039;act&#039;,&#039;label&#039;);&#039;&quot; rel=&quot;nofollow&quot;&gt;go red sox&lt;/a&gt;

- it should contain a trackEvent:

&lt;a href=&quot;onClick=&#039;_gaq.push([&#039;_trackEvent&#039;,&#039;act&#039;,&#039;label&#039;]);&#039;&quot; rel=&quot;nofollow&quot;&gt;go red sox&lt;/a&gt;

At least if Google write the stuff the right way: http://code.google.com/intl/da/apis/analytics/docs/tracking/asyncMigrationExamples.html :-)</description>
		<content:encoded><![CDATA[<p>Hi Justin</p>
<p>I guess you are missing something in your code example:<br />
<a href="onClick='_gaq.push('cat','act','label');'" rel="nofollow">go red sox</a></p>
<p>- it should contain a trackEvent:</p>
<p><a href="onClick='_gaq.push(['_trackEvent','act','label']);'" rel="nofollow">go red sox</a></p>
<p>At least if Google write the stuff the right way: <a href="http://code.google.com/intl/da/apis/analytics/docs/tracking/asyncMigrationExamples.html" rel="nofollow">http://code.google.com/intl/da/apis/analytics/docs/tracking/asyncMigrationExamples.html</a> :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leo</title>
		<link>http://cutroni.com/blog/2010/04/19/faster-better-stronger-the-ga-async-tracking-code/comment-page-1/#comment-2853</link>
		<dc:creator>Leo</dc:creator>
		<pubDate>Tue, 01 Jun 2010 05:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://cutroni.com/blog/?p=1468#comment-2853</guid>
		<description>I&#039;m guessing that the CRM integration code will need to be tweaked so that execution occurs after ga.js has created the cookie.  Anybody know how best to do this?</description>
		<content:encoded><![CDATA[<p>I&#8217;m guessing that the CRM integration code will need to be tweaked so that execution occurs after ga.js has created the cookie.  Anybody know how best to do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diogenes Passos</title>
		<link>http://cutroni.com/blog/2010/04/19/faster-better-stronger-the-ga-async-tracking-code/comment-page-1/#comment-2852</link>
		<dc:creator>Diogenes Passos</dc:creator>
		<pubDate>Tue, 01 Jun 2010 04:42:45 +0000</pubDate>
		<guid isPermaLink="false">http://cutroni.com/blog/?p=1468#comment-2852</guid>
		<description>Yeah, one more great post, Justin!
By the way, have you ever tried to use multiple asynchronous trackers on the same page, for roll up account reports?

Maybe this thread would be a great post for the community, huh? 
I&#039;ve seen so many posts on this thread with unclear answers.
I&#039;ll send you a problem i&#039;m facing and maybe it gonna be a nice suggestion on a new post to Analytics Talk.

Thanks and keep posting!
Best,
@diogenespassos</description>
		<content:encoded><![CDATA[<p>Yeah, one more great post, Justin!<br />
By the way, have you ever tried to use multiple asynchronous trackers on the same page, for roll up account reports?</p>
<p>Maybe this thread would be a great post for the community, huh?<br />
I&#8217;ve seen so many posts on this thread with unclear answers.<br />
I&#8217;ll send you a problem i&#8217;m facing and maybe it gonna be a nice suggestion on a new post to Analytics Talk.</p>
<p>Thanks and keep posting!<br />
Best,<br />
@diogenespassos</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seth</title>
		<link>http://cutroni.com/blog/2010/04/19/faster-better-stronger-the-ga-async-tracking-code/comment-page-1/#comment-2847</link>
		<dc:creator>Seth</dc:creator>
		<pubDate>Sat, 29 May 2010 16:13:18 +0000</pubDate>
		<guid isPermaLink="false">http://cutroni.com/blog/?p=1468#comment-2847</guid>
		<description>1.  Your example for a virtual page (used in setting goals) does not use brackets:

You say: Or, to create a virtual pageview you could push the command onto the queue like this:

&lt;a href=&quot;onClick=&#039;_gaq.push(&#039;_trackPageview&#039;,&#039;/virtual/go-red-sox&#039;);&#039;&quot; rel=&quot;nofollow&quot;&gt;go red sox&lt;/a&gt;

But all of the examples I see for gaq.push have both a parenthesis and a bracket and would seem to require the code to be:

&lt;a href=&quot;onClick=&#039;_gaq.push([&#039;_trackPageview&#039;,&#039;/virtual/go-red-sox&#039;]);&#039;&quot; rel=&quot;nofollow&quot;&gt;go red sox&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>1.  Your example for a virtual page (used in setting goals) does not use brackets:</p>
<p>You say: Or, to create a virtual pageview you could push the command onto the queue like this:</p>
<p><a href="onClick='_gaq.push('_trackPageview','/virtual/go-red-sox');'" rel="nofollow">go red sox</a></p>
<p>But all of the examples I see for gaq.push have both a parenthesis and a bracket and would seem to require the code to be:</p>
<p><a href="onClick='_gaq.push(['_trackPageview','/virtual/go-red-sox']);'" rel="nofollow">go red sox</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pixelated Views Blog / Blogroll &#8211; SEO, Web Analytics, Usability, Upcoming Conferences, and Other Interesting Stuff</title>
		<link>http://cutroni.com/blog/2010/04/19/faster-better-stronger-the-ga-async-tracking-code/comment-page-1/#comment-2810</link>
		<dc:creator>Pixelated Views Blog / Blogroll &#8211; SEO, Web Analytics, Usability, Upcoming Conferences, and Other Interesting Stuff</dc:creator>
		<pubDate>Sun, 09 May 2010 17:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://cutroni.com/blog/?p=1468#comment-2810</guid>
		<description>[...] Faster, Better, Stronger. The GA Async Tracking Code [...]</description>
		<content:encoded><![CDATA[<p>[...] Faster, Better, Stronger. The GA Async Tracking Code [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Google Analytics Launches new AdWords Reports &#38; Other Goodies &#8211; Analytics Talk</title>
		<link>http://cutroni.com/blog/2010/04/19/faster-better-stronger-the-ga-async-tracking-code/comment-page-1/#comment-2801</link>
		<dc:creator>Google Analytics Launches new AdWords Reports &#38; Other Goodies &#8211; Analytics Talk</dc:creator>
		<pubDate>Tue, 04 May 2010 21:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://cutroni.com/blog/?p=1468#comment-2801</guid>
		<description>[...] but this was the official coming out for the new version of the tracking code. I wrote a about how the async code works and if you should switch. The async code will now be the default for tracking. Check out the blog post for more information [...]</description>
		<content:encoded><![CDATA[<p>[...] but this was the official coming out for the new version of the tracking code. I wrote a about how the async code works and if you should switch. The async code will now be the default for tracking. Check out the blog post for more information [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 619Cloud</title>
		<link>http://cutroni.com/blog/2010/04/19/faster-better-stronger-the-ga-async-tracking-code/comment-page-1/#comment-2784</link>
		<dc:creator>619Cloud</dc:creator>
		<pubDate>Thu, 29 Apr 2010 09:30:15 +0000</pubDate>
		<guid isPermaLink="false">http://cutroni.com/blog/?p=1468#comment-2784</guid>
		<description>We did a writeup and video tutorial on how to track events and goals with the new Google Asynchronous tracking code in javascript. Hopefully it will help others.

http://www.619cloud.com/google-analytics-asynchronous-events-goals/</description>
		<content:encoded><![CDATA[<p>We did a writeup and video tutorial on how to track events and goals with the new Google Asynchronous tracking code in javascript. Hopefully it will help others.</p>
<p><a href="http://www.619cloud.com/google-analytics-asynchronous-events-goals/" rel="nofollow">http://www.619cloud.com/google-analytics-asynchronous-events-goals/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (enhanced)

Served from: cutroni.com @ 2012-05-21 04:28:19 -->
