Created
August 7, 2023 12:13
-
-
Save dan-donica/69322ca929175d62a091937ae21980b0 to your computer and use it in GitHub Desktop.
HC || Track clicks from other platforms
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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