I have basic single page website with the normal Google Analytic code:
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-##-##']);
_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);
})();
However my links are like bookmarks - they basically slidedown the single page. My links when clicked are essentially pages but within the same template - they slide to reveal elements of content.
<a href="#section-3">about us</a>
Is there a way I can update the Analytics tracker or somehow track links? So in Analytics I will see people spent so much time on a page etc.