I\'ve been using a script to track outbound links for a couple of months now. The script WORKS, but in the report generated by Google Analytics many UR
The reason for the :80
in your output is because of e.currentTarget.host
http://www.w3schools.com/jsref/prop_area_host.asp
I'm not sure why you are tracking that in addition to your already functional url
variable, but you can always insure that :80
is not there with a simple string replace
_gat._getTrackerByName()._trackEvent("Outbound Links", e.currentTarget.host.replace(':80',''), url, 0);