<script type="text/javascript">
jQuery(function () {
jQuery('a[href^="mailto"]').click(function () {
var email = jQuery(this).attr('href').replace('mailto:', '');
ga('send', 'event', 'External', 'E-Mail', email);
}); });
jQuery.expr[':'].external = function (obj) {
return !obj.href.match(/^mailto:/) && !obj.href.match(/^javascript:/) &&
(obj.hostname != document.location.hostname);
};
jQuery(function () {
jQuery('a:external').click(function () {
ga('send', 'event', 'External', 'Link', jQuery(this).attr('href'));
}); });
</script>