Reputation: 101
I have used the information on this site and at this page
https://support.google.com/analytics/answer/1136920?hl=en
to add tracking on my outbound links (pictures and texts) at this page
http://virginialidar.com/index-2.html
I am trying to view them in Google Analytics (Reporting > Behavior > Events > Overview) but no clicks are showing up. I have visited the site and clicked the links may times to test. It has been about 72 hours since I added the code.
Can someone view source at http://virginialidar.com/index-2.html and see what I am doing wrong? I think it may be the image links
Upvotes: 0
Views: 132
Reputation: 2452
It looks like you've copied the "smart" quotes instead of the straight quotes. You currently have:
onclick=”trackOutboundLink(‘http://qcoherent.com/evaluation.html’); return false;"
When it should be...
onclick="trackOutboundLink('http://qcoherent.com/evaluation.html'); return false;"
Upvotes: 1