頭の中に次の Javascript があります。
// Google Analytics code required for EventTracking <script type="text/javascript"> function trackOutboundLink(link, category, action) { try { _gaq.push(['_trackEvent', category , action]); } catch(err){} setTimeout(function() {document.location.href = link.href; }, 100); }
そして、私の体には次のようなものがあります:
// required to activate social bookmarks
$(".btn_fb").click(function() {
window.open("");
return false;
});
$(".btn_tw").click(function() {
window.open("http://twitter.com/home?status=Webpage Title"+document.URL+"", "Twitter", "width=660,height=400,scrollbars=no;resizable=no");
return false;
});
$(".btn_li").click(function() {
window.open("http://www.linkedin.com/shareArticle?mini=true&url="+document.URL+"&title=Webpage Title;summary=Webpage summary", "LinkedIn", "width=660,height=400,scrollbars=no;resizable=no");
return false;
}); $('.btn_go').click(function() {
window.open("http://plus.google.com/share?url="+document.URL, 'GooglePlus', 'width=660,height=500,scrollbars=no,resizable=no');
return false;
});
$(".btn_ma").attr("href", "mailto:?subject=Webpage Subject&body=Webpage summary" + window.location); </script>
//GA Code
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-NNNNNN-1']);
_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>
そして、私のHTMLには次のように書かれています:
<div class="btn_fb"></div>
<div class="btn_tw"></div>
<div class="btn_li"></div>
<a class="btn_ma"></a>
<div class="btn_go"></div>
リンクは正しく機能しますが、タグではないため (.btn_ma を除く)、ドキュメントに従って Google アナリティクス イベント トラッキングを追加できません: https://support.google.com/analytics/answer/1136920?hl=en-GB .
ここでの最善のアプローチに関するアドバイスはありますか?