简体   繁体   中英

Create JavaScript event triggers for Google Analytics 4

Articulate Storyline is a software for creating interactive learning courses. I can execute JavaScript triggers in storyline files to track button clicks with Google Analytics 4.

I added the following code to the button, but it didn't work.

ga('send', 'event', 'Button', 'click', 'Next Button');

The code was working fine with the old version of Google Analytics(UA). Many designers are looking for the answer. We need developer's help. :) Any advice would be appreciated.

I think this is covered here: https://support.google.com/analytics/answer/11147304

It looks like you can do

<script>
  gtag("event", "publish", {role: "Writer"});
</script>

Edit: additional information in the documentation here; https://support.google.com/analytics/answer/11403294?hl=en

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM