Created
June 12, 2013 08:40
-
-
Save fnobi/5763736 to your computer and use it in GitHub Desktop.
gaで任意のURLへのアクセスを記録 ref: http://qiita.com/items/354060051911f48d3bff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ga登録 | |
| ga('create', 'UA-XXXX-Y'); | |
| // 現在のページへのアクセスを記録 | |
| ga('send', 'pageview'); | |
| // ページのURLをカスタムしてアクセスを記録 | |
| ga('send', 'pageview', '/toppage'); | |
| // clickがあったときにアクセスを記録 | |
| $button.on('click', function () { | |
| ga('send', 'pageview', '/toppage/clickbutton'); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment