Custom events tracking

You can track any event on your website, such as button clicks, form submissions, scrolls, video plays, etc.

To get started, in your website code, add the following snippet:

window.cookie3.trackEvent({ 
    category: 'Button', 
    action: 'Click', 
    name: 'Sign up',
    value: 500,
  });

The example above will enable tracking for a button click event with the name 'Sign up' and value of 500. The data in this dashboard will be updated in real-time as soon as the event is triggered.

Last updated