El seguimiento de eventos hitCallback de Google Analytics no funciona

Estoy tratando de rastrear un enlace en el que se hace clic usando el seguimiento de eventos y la devolución de llamada. Mi código analítico se ve así ...

<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>

Y el enlace que estoy tratando de rastrear se ve así ...

<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>

Seguí el ejemplo de hitcallback dehttp://www.swellpath.com/2013/12/universal-analytics-using-hitcallback/&nbsp;Pero todavía no funciona.

¿Me estoy perdiendo de algo?