To track link clicks in microsites you will need the following


This snippet needs placing within the script section of the microsite



<script>
Array.prototype.forEach.call(document.getElementsByClassName('track'), function (el) {
            var targetToTrack = el.getAttribute('data-track');
            el.onclick = function () {
                f24_trackPage(location.protocol + "//" + document.domain + " - " + targetToTrack);
                console.log(location.protocol + "//" + document.domain + " - " + targetToTrack);
            }
        });
</script>

Then for each link on the microsite you want to track you will need add the class="track" and the attribute data-track="Pdf clicked" with PDF clicked being what ever is appropriate for that link.  


e.g.
<a href="" class="track" data-track="Learn more CTA clicked">Learn More</a>