Hi, still it exists... But I see it occurring only when user tracking is enabled and when previewing a post. It does not happen after publishing the post.
So it's not a real big deal but there is a nasty side-effect: the error breaks other jQuery script like FancyBox to fire up so when previewing posts or pages, it looks like the images do not open correctly while only after publishing, it does all work correctly.
So I propose the following change to the function ga_external_tracking_js() in google-analyticator.php :
/**
* Adds the scripts required for outbound link tracking
**/
function ga_external_tracking_js()
{
# Disable the tracking code on the post preview page
if ( !function_exists("is_preview") || ( function_exists("is_preview") && !is_preview() ) )
{
wp_enqueue_script('ga-external-tracking', plugins_url('/google-analyticator/external-tracking.min.js'), array('jquery'), GOOGLE_ANALYTICATOR_VERSION);
}
}
Tried and tested but any alternative with the same effect would be most welcome :)