Glad to help!
“Is it possible to track clicks to external links?”
Perhaps, just need the Google doc URL that explains what you are trying to do. That way I can take a look and see if possible with the current version of the plugin.
Thanks for the great review, btw!
Thanks for the fast reply. I am trying to capture outbound links on my website as events in GA. When user clicks on any external link, it should be registered as event. Is that possible with your plugin? Some other plugins have this enabled by default.
Thanks
Yeah just need the URL to the Google doc that explains it, so I can follow along and see if it’s possible to do. Without the doc, can’t say either way.
I found the solution, I added this
window.onload = function(){
jQuery("a").bind("click", function(e){
ga('send', 'event', 'outbound', this.href , 'click')
})
}
to Custom GA Code
Cheers
Thanks for sharing your solution. I’ll add a note in the docs next plugin update. Cheers, @creativeinteractivemedia.