/ Published in: jQuery
This code allows Google Analytics to monitor hashtags of jQuery activated events. Very useful if you relies on modal boxes.
Este código permite ao Google Analytics monitorar hashtags e âncoras em sites com eventos ativados por jQuery. Muito útil se você utiliza caixas modais.
Este código permite ao Google Analytics monitorar hashtags e âncoras em sites com eventos ativados por jQuery. Muito útil se você utiliza caixas modais.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<a href="#contact" rel="contact">Contact</a> <script> $(document).ready(function(){ // loadOnClick(); function loadOnClick() { $('a').each(function(){ $(this).attr("onclick", "_gaq.push(['_trackPageview', location.pathname + location.search + jQuery(this).attr('rel')]);" ); }); } }); </script>