Skip to content

Instantly share code, notes, and snippets.

@mryoshio
Created December 7, 2019 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mryoshio/ed5c8381c870399b48baa1c315ee9e56 to your computer and use it in GitHub Desktop.
Save mryoshio/ed5c8381c870399b48baa1c315ee9e56 to your computer and use it in GitHub Desktop.

Gemfile

gem 'jquery-rails'

app/assets/javascripts/application.js

...
//= require_tree .                                                                                                                                            

//= require jquery3                                                                                                                                           
//= require jquery_ujs 

aplication.html.erb

...
    <script>
      (function(i,s,o,g,r,a,m){
          i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
              (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
          m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
      ga('create', 'UA-XXXXXX-Y', 'auto');
      ga('send', 'pageview');
    </script>
  </head>
  <body>
    <%= yield %>
  </body>
</html>

books/index.html.erb

...
  </tbody>
</table>

<script>
  $("a").each(function(idx,) {
      console.log(idx + ': link, ' + $(this).text());;
      $(this).one("click", function() {
          console.log(idx + ': a link clicked');
          ga('send', {
              hitType: 'event',
              eventCategory: 'alink',
              eventAction: 'clicked',
              eventLabel: $(this).text()
          });
      });
  });
</script>

<%= link_to 'New Book', new_book_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment