TrackingCustom Event Tracking

Custom Event Tracking

Create Custom Events

Track custom actions specific to your business, like video views, quiz completions, or product comparisons.

JavaScript Example:

// Track a custom event
Harper('trackCustom', 'VideoView', {
  video_title: 'Product Demo',
  duration: 120,
  completion: 0.75
});

// Track when user compares products
Harper('trackCustom', 'CompareProducts', {
  products: ['SKU123', 'SKU456'],
  page: 'comparison-tool'
});

Was this helpful?