If you’re not tracking your links, you’re probably leaving tons of money on the table, spending more than you can afford, and struggling to keep up with dozens of online marketing campaigns. Once the call is complete, it can run a callback function so we can redirect to the outbound page. Take time to go through the settings for the plugins as there may be some auto tweets you will want to switch off. And http:// www.tiny.cc is not a required format because the tiny.cc site happens to be configured without a subdomain (www. was made optional). is shorter and boiled down to only the required parts that make a URL functional: protocol + domain + top level domain (http:// + tiny + .cc). The name of your event is good to use for easy tracking. • Website URL: Paste the event page URL that you copied from Eventbrite.
For example, if the user clicks on “sales@wearefine.com”, that’s what Google Analytics will record. Technology[edit] The company uses HTTP 301 redirects for its links.
But the webmaster of these sites must not give blanket permission to every website that exists on the internet to create links to it. Your domain registar account usually has URL forwarding options for the domain.
Examples: Netflix at one time used movi.es and BarkBox, which supplies dog treat gift packages, use the URL shortener ruv.me. If you need to change your URL on your social network page, it's easy to do.) Bitly Bitly is at the top of the URL shortening game. You can also share files, images and videos easily with Ow.ly in all sorts of different formats. Many extensions are available from companies you already use for domain registration — such as Hover. However, while Analytics shows exit pages it won’t tell you which links users clicked to leave your site.
Adding tracking directly to your site If you have added the Analytics tracking code directly to your site, you can copy and paste the script below into your own pages to set up Event tracking for outbound links. You can copy/paste the backlink URLs that you want to check from your website. Dead simple to manage multiple custom domains and multiple clients from a single account Consistent branding impression. After the address has been highlighted, press Ctrl+C or Cmd+C on the keyboard to copy it. Finally, URL shortening sites provide detailed information on the clicks a link receives, which can be simpler than setting up an equally powerful server-side analytics engine, and unlike the latter, does not require any access to the server. Every access requires more requests (at least one more DNS lookup, though it may be cached, and one more HTTP/HTTPS request), thereby increasing latency, the time taken to access the page, and also the risk of failure, since the shortening service may become unavailable. Check out our review of this fantastic tool to see how it works. There are no real extra features or services, so this is good choice if you just want to get the job done as fast and as smoothly as possible without all the extra fluff like signing in and CAPTCHAs and other stuff. Many URL-shortener services offer the option to track how many clicks each link gets. 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. That fact makes it easy to use only, in online profiles and anywhere else that you want to put a link and track it. To send the results to other people, enter their email addresses in the CC field.