Skip to content

Instantly share code, notes, and snippets.

@dan-donica
Created August 7, 2023 12:13
Show Gist options
  • Save dan-donica/69322ca929175d62a091937ae21980b0 to your computer and use it in GitHub Desktop.
Save dan-donica/69322ca929175d62a091937ae21980b0 to your computer and use it in GitHub Desktop.
HC || Track clicks from other platforms
<!-- Begin "Track clicks from other platforms" || Help center -->
<!-- Add to Settings-Javascript->Body -->
<!-- IN:20200120-16-6 -->
<script>
window.addEventListener('DOMContentLoaded', function () {
var element = document.querySelector("#element-123 a");
element.addEventListener("click", handler);
function handler() {
// insert the content of the function
// for all the desired tracking platforms here
}
});
</script>
<!-- End "Track clicks from other platforms" || Help center -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment