This can be added to existing JavaScript files or in a script block as long as it’s loaded somewhere within the HTML body (ideally, just before the closing tag). jQuery (or your alternative) must be loaded first although the Google Analytics tracking code can appear anywhere on the page. /* Track outbound links in Google Analytics */ (function($) { "use strict"; // current page host var baseURI = window.location.host; // click event on body $("body").on("click", function(e) { // abandon if link already aborted or analytics is not available if (e.isDefaultPrevented() || typeof ga !== "function") return; // abandon if no active link or link within domain var link = $(e.target).closest("a"); if (link.length != 1 || baseURI == link[0].host) return; // cancel event and record outbound link e.preventDefault(); var href = link[0].href; ga('send', { 'hitType': 'event', 'eventCategory': 'outbound', 'eventAction': 'link', 'eventLabel': href, 'hitCallback': loadPage }); // redirect after one second if recording takes too long setTimeout(loadPage, 1000); // redirect to outbound page function loadPage() { document.location = href; } }); })(jQuery); // pass another library here if required The event is recorded with the category name ‘outbound’, action name ‘link’ and the value set to the URL of the outbound page. Set the Media Source Name: Either add the name of the media source manually in the box or click one of the tabs (e.g. “Email”). A short link which expires, or can be terminated, has some security advantages.
Having a link shortener protects users from malicious sites that engage in spreading malware, phishing attacks, and other harmful activity. Once implemented, visit your site and click a few outbound links. If a member uses a URL and then changes it, that URL will be unavailable for use by other members for six months. More » Mcaf.ee McAfee is a leading computer and web security company that provides antivirus, encryption, firewall, email security and much more to its customers.
Upgrade my links by putting my name in a custom domain and sharing with friends, family and on social media. Social media dashboard and notifications keeps me on top of what people are saying online about our brands. This is the title that will show in your Google Analytics account after the automation is started.
Ever heard the saying, ”the shorter the better?” Well, I actually, made that up. Affiliate Marketing with Your Link Tracker Our link tracker software works perfectly for affiliates too!
This is compatible with most web browsers and platforms as long as your bookmarks or favorites allow javascript. Tracking Search Traffic to the PDF Add a URL parameter to every link pointing to each PDF document on your site. However, there are many instances where you or your publisher may want to keep track of additional information. Advantages of Using Your Own Domain URLs: Promote your site (branding): when people retweet, your domain will fly around. It frees up valuable real estate in social messages. Another operational limitation of URL shortening services is that browsers do not resend POST bodies when a redirect is encountered. This has been risky in the past because errors can result whenever users manually enter links.