O rastreamento de eventos hitCallback do Google Analytics não está funcionando

Estou tentando rastrear um link que está sendo clicado usando o acompanhamento de eventos e o hitcallback. Meu código de análise é assim ...

<script type="text/javascript">//<![CDATA[
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-X']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
//]]></script>

E o link que estou tentando rastrear se parece com isso ....

<a href='http://cool.com/' onclick="var href = this.href; ga('send','event','outbound','click', this.href, {'hitCallback': function(){document.location = href;}}); return false;">Cool</a>

Eu segui o exemplo hitcallback dehttp://www.swellpath.com/2013/12/universal-analytics-using-hitcallback/ mas ainda não está funcionando.

Estou esquecendo de algo?

questionAnswers(1)

yourAnswerToTheQuestion