<?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: Google Analytics jQuery Plugin</title>
	<atom:link href="http://www.shamasis.net/projects/ga/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shamasis.net</link>
	<description>All you need to know what I know</description>
	<lastBuildDate>Sun, 06 Jun 2010 06:42:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Steffen</title>
		<link>http://www.shamasis.net/projects/ga/comment-page-1/#comment-2141</link>
		<dc:creator>Steffen</dc:creator>
		<pubDate>Sat, 29 May 2010 18:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.shamasis.net/?page_id=862#comment-2141</guid>
		<description>
Hi Shamasis,
the reason I think it won&#039;t work is because of
 
1.) _anonymizeIp() is a method of _gat, not of the pageTracker which would get automatically mapped to $.ga through  bind()
 
$.ga._anonymizeIp()
--&gt; undefined
 
$.ga.anonymizeIp()
--&gt; undefined
 
_gat._anonymizeIp()
--&gt; function (){i.Va=r}
 
 
2.) You can&#039;t use the callback argument of ga.load() because as already mentioned _anonymizeIp() is not a method of pageTracker
 
$.ga.load(&#039;UA-XXXXXX-XX&#039;, function(pageTracker) { pageTracker._anonymizeIp(); });
-&gt; undefined
-&gt; Uncaught TypeError: Object [object Object] has no method &#039;_anonymizeIp&#039;
 
Any idea?
-- Steffen
</description>
		<content:encoded><![CDATA[<p>Hi Shamasis,<br />
the reason I think it won&#8217;t work is because of<br />
 <br />
1.) _anonymizeIp() is a method of _gat, not of the pageTracker which would get automatically mapped to $.ga through  bind()<br />
 <br />
$.ga._anonymizeIp()<br />
&#8211;&gt; undefined<br />
 <br />
$.ga.anonymizeIp()<br />
&#8211;&gt; undefined<br />
 <br />
_gat._anonymizeIp()<br />
&#8211;&gt; function (){i.Va=r}<br />
 <br />
 <br />
2.) You can&#8217;t use the callback argument of ga.load() because as already mentioned _anonymizeIp() is not a method of pageTracker<br />
 <br />
$.ga.load(&#8216;UA-XXXXXX-XX&#8217;, function(pageTracker) { pageTracker._anonymizeIp(); });<br />
-&gt; undefined<br />
-&gt; Uncaught TypeError: Object [object Object] has no method &#8216;_anonymizeIp&#8217;<br />
 <br />
Any idea?<br />
&#8211; Steffen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shamasis Bhattacharya</title>
		<link>http://www.shamasis.net/projects/ga/comment-page-1/#comment-2137</link>
		<dc:creator>Shamasis Bhattacharya</dc:creator>
		<pubDate>Thu, 27 May 2010 06:16:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.shamasis.net/?page_id=862#comment-2137</guid>
		<description>&lt;p&gt;You will be surprised to know that any change made to ga.js gets AUTOMATICALLY integrated into this plugin. Test with _anonymizeIp(), it must already work! :)&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>You will be surprised to know that any change made to ga.js gets AUTOMATICALLY integrated into this plugin. Test with _anonymizeIp(), it must already work! <img src='http://www.shamasis.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steffen</title>
		<link>http://www.shamasis.net/projects/ga/comment-page-1/#comment-2136</link>
		<dc:creator>Steffen</dc:creator>
		<pubDate>Wed, 26 May 2010 16:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.shamasis.net/?page_id=862#comment-2136</guid>
		<description>If possible, you should already implement the recently integrated
 
&lt;pre style=&quot;font-family: monospace; color: #007000; font-size: 9pt; background-color: #fafafa; line-height: 15px; margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; overflow-x: auto; overflow-y: auto; word-wrap: break-word; padding: 0.99em; border: 1px solid #bbbbbb;&quot;&gt;_gat._anonymizeIp();&lt;/pre&gt;
 
into the $.ga.load(uid, callback) function because the load() function already performs the Tracking [line 81: t._trackPageview()] and _anonymizeIp() should be invoked before _trackPageview() as far as I understand the updated API.
http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp
BTW: _getTracker(account) is deprecated. The ga.js code is invoking _createTracker(opt_account, opt_name) now.</description>
		<content:encoded><![CDATA[<p>If possible, you should already implement the recently integrated<br />
 <br />
<pre style="font-family: monospace; color: #007000; font-size: 9pt; background-color: #fafafa; line-height: 15px; margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; overflow-x: auto; overflow-y: auto; word-wrap: break-word; padding: 0.99em; border: 1px solid #bbbbbb;">_gat._anonymizeIp();</pre><br />
 <br />
into the $.ga.load(uid, callback) function because the load() function already performs the Tracking [line 81: t._trackPageview()] and _anonymizeIp() should be invoked before _trackPageview() as far as I understand the updated API.<br />
<a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp" rel="nofollow">http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp</a><br />
BTW: _getTracker(account) is deprecated. The ga.js code is invoking _createTracker(opt_account, opt_name) now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shamasis Bhattacharya</title>
		<link>http://www.shamasis.net/projects/ga/comment-page-1/#comment-2123</link>
		<dc:creator>Shamasis Bhattacharya</dc:creator>
		<pubDate>Sun, 09 May 2010 09:53:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.shamasis.net/?page_id=862#comment-2123</guid>
		<description>I have fixed all issues. Will post updated JS as soon as I finish testing every aspect.</description>
		<content:encoded><![CDATA[<p>I have fixed all issues. Will post updated JS as soon as I finish testing every aspect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: t</title>
		<link>http://www.shamasis.net/projects/ga/comment-page-1/#comment-2120</link>
		<dc:creator>t</dc:creator>
		<pubDate>Fri, 30 Apr 2010 15:56:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.shamasis.net/?page_id=862#comment-2120</guid>
		<description>I have a similar problem to the one that JMS was having with the e-commerce tracking. All events are wrapped in $(function() { }); but because the script takes its time to load it the bind() function in your script hasn&#039;t been fired and it throws an error and tells me the $.ga.XXX functions I am trying to call are undefined.
Have you got any solutions?</description>
		<content:encoded><![CDATA[<p>I have a similar problem to the one that JMS was having with the e-commerce tracking. All events are wrapped in $(function() { }); but because the script takes its time to load it the bind() function in your script hasn&#8217;t been fired and it throws an error and tells me the $.ga.XXX functions I am trying to call are undefined.<br />
Have you got any solutions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shamasis Bhattacharya</title>
		<link>http://www.shamasis.net/projects/ga/comment-page-1/#comment-954</link>
		<dc:creator>Shamasis Bhattacharya</dc:creator>
		<pubDate>Thu, 25 Mar 2010 04:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.shamasis.net/?page_id=862#comment-954</guid>
		<description>If you have Google Analytics included in your web-page, this is an alternative method to do the same. Everything else remains unchanged.

However, it adds some features to existing GA like: lesser page-load time, neater API, jQuery syntax, etc.

You need to include jquery.js and jquery.ga.js in your page and follow the instructions on this page.</description>
		<content:encoded><![CDATA[<p>If you have Google Analytics included in your web-page, this is an alternative method to do the same. Everything else remains unchanged.</p>
<p>However, it adds some features to existing GA like: lesser page-load time, neater API, jQuery syntax, etc.</p>
<p>You need to include jquery.js and jquery.ga.js in your page and follow the instructions on this page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gee</title>
		<link>http://www.shamasis.net/projects/ga/comment-page-1/#comment-562</link>
		<dc:creator>gee</dc:creator>
		<pubDate>Wed, 24 Mar 2010 10:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.shamasis.net/?page_id=862#comment-562</guid>
		<description>how is this plugin supposed to work? what is the output? is there a sample page somewhere? I dont see anything displayed after using the code mentioned above.  can i view the analytics data with this plugin?</description>
		<content:encoded><![CDATA[<p>how is this plugin supposed to work? what is the output? is there a sample page somewhere? I dont see anything displayed after using the code mentioned above.  can i view the analytics data with this plugin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Montana Flynn</title>
		<link>http://www.shamasis.net/projects/ga/comment-page-1/#comment-545</link>
		<dc:creator>Montana Flynn</dc:creator>
		<pubDate>Sun, 14 Mar 2010 03:54:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.shamasis.net/?page_id=862#comment-545</guid>
		<description>I am in the process of making a jQuery plugin for the new &lt;a title=&quot;asyncTracking&quot; href=&quot;http://code.google.com/apis/analytics/docs/tracking/asyncTracking.html&quot; rel=&quot;nofollow&quot;&gt;async&lt;/a&gt; analytics code.    I have been using it and very impressed with its results in event tracking.   The standard code often fails to register an action before the page reloads.   A nice fix is to tack on a 1s timeout to the link.</description>
		<content:encoded><![CDATA[<p>I am in the process of making a jQuery plugin for the new <a title="asyncTracking" href="http://code.google.com/apis/analytics/docs/tracking/asyncTracking.html" rel="nofollow">async</a> analytics code.    I have been using it and very impressed with its results in event tracking.   The standard code often fails to register an action before the page reloads.   A nice fix is to tack on a 1s timeout to the link.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shamasis Bhattacharya</title>
		<link>http://www.shamasis.net/projects/ga/comment-page-1/#comment-484</link>
		<dc:creator>Shamasis Bhattacharya</dc:creator>
		<pubDate>Tue, 09 Feb 2010 19:31:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.shamasis.net/?page_id=862#comment-484</guid>
		<description>All GA functions starting with underscore, is available for use. :)</description>
		<content:encoded><![CDATA[<p>All GA functions starting with underscore, is available for use. <img src='http://www.shamasis.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AJ Mercer</title>
		<link>http://www.shamasis.net/projects/ga/comment-page-1/#comment-476</link>
		<dc:creator>AJ Mercer</dc:creator>
		<pubDate>Wed, 03 Feb 2010 04:42:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.shamasis.net/?page_id=862#comment-476</guid>
		<description>is _setCustomVar() supported?
http://code.google.com/apis/analytics/docs/gaJS/gaJSApiBasicConfiguration.html#_gat.GA_Tracker_._setCustomVar
 </description>
		<content:encoded><![CDATA[<p>is _setCustomVar() supported?<br />
<a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiBasicConfiguration.html#_gat.GA_Tracker_._setCustomVar" rel="nofollow">http://code.google.com/apis/analytics/docs/gaJS/gaJSApiBasicConfiguration.html#_gat.GA_Tracker_._setCustomVar</a><br />
 </p>
]]></content:encoded>
	</item>
</channel>
</rss>
