Skip to content

Event Tracking

Obaied edited this page Nov 1, 2016 · 2 revisions

Event tracking

You can use adjust to track all kinds of events. Let's say you want to track every tap on a button. Simply create a new event token in your [dashboard]. Let's say that event token is abc123. You can add the following line in your button’s click handler method to track the click:

var adjustEvent = new AdjustEvent("abc123");
Adjust.trackEvent(adjustEvent);
Clone this wiki locally