onclick
Cookie が存在するかどうかを確認する条件が渡された後、サイトのページのボタンを追跡したいと考えています。
非常に単純ですが、どの構文が最適でしょうか?
ga
GA イベント追跡構文のandプレフィックスを調べましたがgaq_push
(間違っていたらすみません)、かなり似ているように見えますか?
_gaq.push
<script type="text/javascript">
jQuery(document).ready(function () {
if (jQuery.cookie('entry_winagrand_cookie') !== null) {
jQuery('notregisterbtn').on('click', function () {
_gaq.push(['_trackEvent', 'QR_Win_A_Grand', 'Clicked through to Register']);
});
}
});
</script>
ga
<script type="text/javascript">
jQuery(document).ready(function () {
if (jQuery.cookie('entry_winagrand_cookie') !== null) {
jQuery('notregisterbtn').on('click', function () {
ga('send', 'event', 'button', 'click', 'QR_Win_A_Grand', 'Clicked_through_to_register');
});
}
});
</script>