Skip to content

Instantly share code, notes, and snippets.

@fnobi
Created June 12, 2013 08:40
Show Gist options
  • Select an option

  • Save fnobi/5763736 to your computer and use it in GitHub Desktop.

Select an option

Save fnobi/5763736 to your computer and use it in GitHub Desktop.
gaで任意のURLへのアクセスを記録 ref: http://qiita.com/items/354060051911f48d3bff
// 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