+ This page demonstrates how to track clicks on the "Powered by Amplitude" footer + that appears in Amplitude Guides & Surveys. The tracking works by using DOM event + delegation to capture clicks on the footer element. +
+
+ Event Name: Guides Footer Clicked
+ Destination: https://app.amplitude.com/guides-surveys
+
+// 1. Include the Amplitude SDK
+<script src="https://cdn.amplitude.com/libs/amplitude-8.21.10-min.gz.js"></script>
+
+// 2. Include the footer tracking helper
+<script src="guides-footer-tracking.js"></script>
+
+// 3. Initialize Amplitude and enable footer tracking
+amplitude.init('YOUR_API_KEY');
+window.AmplitudeGuidesFooterTracking.enableGuidesFooterTracking(amplitude);
+
+