Outbound links are the links which take visitors from your website to some other site on the web. Also, you can choose the redirect type of your link, depending on whether you plan on changing your destination URL in the future. We can use event tracking to record outbound links but there are a number hurdles to overcome: the event must be recorded on all browsers and not impede navigation we should not need to manually identify or attach separate handlers to every outbound link, and we must ensure the event is recorded before the outbound page starts to load. As I said, that reference number is unique to your Instagram post, and 18 quadrillion is easily going to be sufficient for all those food photos people post there. Owned Media email and SMS campaigns, web site banners and landing pages, viral posts on social media or even QR codes on physical posters.
Before Bitly (and even Twitter), there has been a URL shortener, it was TinyURL. Clicking on it will show you a list of outgoing URL(s) users clicked on your website.
It is reserved for campaigns using paid keywords. Facebook has this new colored status background feature that works when your status is short and straight to the point.
Browse our list for inspiration: You'll likely get some great ideas just look at what others have done! But we’re then moving away from on-site Analytics into more dubious territory; Google wouldn’t necessarily want to share that data. You can also find out how many clicks your particular bit.ly link got compared to the total clicks on the long link.
It is stored in your My Sailthru Settings under Setup > Domains. Once the address is copied, paste that address into another program by clicking a blank field and pressing Ctrl+V or Cmd+V. Tag Manager uses several different types of event listener tags. This is something you’ll often hear from link shortener detractors. The next page will show you a shortened link. 7. I like twitter because it stands out uniquely with awesome features. Use custom domains to multiply click-throughs and increase the public's awareness of my brands. Change http to https and then load the resulting URL. Owned media is often a great source for abundant (and mostly free) traffic, but it's equally important to track and measure it properly, to get more installs and better engagements from your new users. Some link shorteners end up on domain block lists because of heavy spammer use. Personally, I use Hootsuite for all of my Twitter’ing so I don’t have the need to go out and shorten it separately. Instead it is simply a pointer that forwards traffic to a different address. You can also put it in your bookmarks instead of the links toolbar. 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.