web-dev-qa-db-fra.com

Lien d'ancrage de pointage avec Google Analytics

J'ai cherché comment suivre les liens d'ancrage dans l'analyse, mais je n'ai pas réussi à le faire fonctionner. J'ai ce code dans l'en-tête:

<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).Push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('_setAllowAnchor', true);
ga('create', 'UA-*******-1', '****.com');
ga('send', 'pageview');
</script>

Et mes liens ressemblent à ceci:

<a href='#/contact'><span>Contact</span></a>

J'ai aussi essayé d'utiliser ces liens:

<a href='#/contact' onClick="_gaq.Push(['_trackPageview', location.pathname+location.search+location.hash]);"><span>Contact</span></a>
1
Fredrik

Ce code doit fonctionner:

<a href="#contact" onclick="_gaq.Push(['_trackPageview' ,'/contact/']);"><span>Contact</span></a>
1
Iulius