Watch this screen capture and you can see the Click Link events are indeed being sent to Marketo:
Without further information I'd assume your sessions are still anonymous (as opposed to associated with a known lead). If you do a Smart List that's only for associated sessions. A Web Page Activity report for Anonymous visitors (on the Setup tab) reveals anon sessions.
So I pulled hte Web Page Activity Report and I can see my name on the report, but when I go into my Activity Log, it isn't showing a clicked link activity... weird because it is obviously running correctly from your screen share, but I am unable to find that data in Marketo.
But run an Anonymous WPA and compare.
Ok I did this, and still, no one on that list has an activity log that involves a link click, only the web page visit.
Clicked into all these, and none have a "clicklink" activity. So odd.
OK, please try this:
document.querySelector("audio").addEventListener("play",function(e){
Munchkin.munchkinFunction("clickLink",{
href : this.currentSrc || this.src
});
});
P.S. It's actually better to use synthetic Visit Web Page, not Click Link, for reasons I'll explain in an upcoming blog post, but Click Link will be okay for your case.)
Tried that and tested using my profile and it still has no "clicklink" activity in the activity log. It logs my visit to the page in the activity log each time, but not the clicks on the play button.
This is current code on the LP as it stands:
<center><audio controls="controls">
<source src="https://go.synack.com/rs/738-OEX-476/images/Synack Podcast - Executive Lunch - RSA 2019 - Episode 1 with Intro.mp3" type="audio/mpeg" />
Your browser does not support the audio element.
</audio></center>
<script>// <![CDATA[
// document.querySelector("audio").addEventListener("play",function(e){
Munchkin.munchkinFunction("clickLink",{
href : this.currentSrc || this.src
});
}); >
// ]]></script>
You have a syntax error now, so that's the direct problem.
See the extra comments and a closing > in there?
Ok got that removed and still doesn't seem to be working it's never ending!