someone could correct me? I fail to operate properly tracking for links to external sites .... I added it site to my analytics account I add in header the html code with the identification number being, the header that looks like this: <head> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title><?php if ( is_singular() || is_archive() ) { wp_title(''); } else { bloginfo('name'); } ?></title> <link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); _e('/style.css', THEME_NAME); ?>" media="screen" /> <!--[if IE]><link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/ie.css" media="screen" /><![endif]--> <?php wp_head(); ?> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-35049334-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga '.'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> Now I want to make a correct configuration for tracking links to other web sites, the link is: <a href="site xx.com"> Click Here </ a> To set up the link I modified as follows: <a href="sitexx.com">Click Here" onClick="_gaq.push(['trackEvent', 'click', ]);"></a> goals panel was as follows: Goal name: trackpageview category: that is equal to, "trackEvent" action: that is equal to, "click" lavel: value: I have to add something else in the code of my site or analytics panel? thanks!