Tracking Specific Exit Links with Custom Link Tracking?
Currently I'm setting an onclick event for a specific exit link on my site that runs a typical s.tl() function - this simply records a custom link name into a prop so that we can track this button click.
Unfortunately I recently realized that this prop is getting double counted (at least in the debugger) it's not only being set in the request being fired when the custom link track function is set off but also when the exit link is tracked. What's the proper way to track a prop along with an exit link? Should I not be running the s.tl() function on a true exit link with automatic exit link tracking enabled, assuming this will allow the prop to piggyback off of the exit link image request? I was worried this may then not report properly in the traffic report for that prop.
Simplified Example:
<a onclick="omnitrackProp22('linkname','value')" href="http://www.exitlink.com"> <img src="button.jpg" /> </a> <script> function omnitrackProp22(linkName, value) { var s = s_gi(s_account); s.linkTrackVars = 'prop22'; s.prop22 = value; s.tl(true, 'e', linkName); //Do I need this since the automatic exit link tracking is already picking up the prop value when it fires? } </script>