HC || Track clicks from other platforms
https://help.instapage.com/hc/en-us/articles/206118248-How-to-align-your-form-fields-horizontally
Google Analytics event tracking 6
https://gist.github.com/dan-donica/69322ca929175d62a091937ae21980b0
<!-- 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 -->