Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 23rd, 2012  |  syntax: None  |  size: 0.62 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. // http://d.hatena.ne.jp/pikotea/20110628/1309282228
  2. var _gaq = _gaq || [];
  3. _gaq.push(['_setAccount', 'UA-*********']);
  4.  
  5. $(document).bind('mobileinit', function(){
  6.         $(':jqmData(role="page")').live('pageshow', function (event, ui) {
  7.                 _gaq.push(['_trackPageview', $.mobile.activePage.jqmData('url')]);
  8.         });
  9. });
  10.  
  11. $(document).ready(function(){
  12.         var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  13.         ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  14.         var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  15. });