Tracking Outbound Link Clicks

Can anyone point me to an extension or code sample for how to
track outbout link clicks? I have a customer who wants to track how
many times a link is clicked that points to an external
site.

Have a look at Google Analytics.
http://www.google.com/analytics/
Dan Mode
--> Adobe Community Expert
*Flash Helps*
http://www.smithmediafusion.com/blog/?cat=11
*THE online Radio*
http://www.tornadostream.com
<--check this
***Stop Piracy
http://www.adobe.com/aboutadobe/antipiracy/***
"crow34" <[email protected]> wrote in
message
news:f886to$o7f$[email protected]..
> Can anyone point me to an extension or code sample for
how to track
> outbout link clicks? I have a customer who wants to
track how many times a
> link is clicked that points to an external site.

Similar Messages

  • How to apply outbound link tracking code in Adobe Muse?

    Using Adobe Muse v6 to build my website and want to set up outbound URL tracking on a number of links.
    I have the correct code snippets from https://support.google.com/analytics/answer/1136920?hl=en
    <script type="text/javascript">
    function trackOutboundLink(link, category, action) {
    try {
    _gaq.push(['_trackEvent', category , action]);
    } catch(err){}
    setTimeout(function() {
    document.location.href = link.href;
    }, 100);
    </script>
    and
    <a href="http://www.example.com" onClick="trackOutboundLink(this, 'Outbound Links', 'example.com'); return false;">
    However Adobe Muse adds the a href code to the basic links in the back end, all I usually add is the http://www.example.com part.
    Does anyone know a way to add the onClick="trackOutboundLink(this, 'Outbound Links', 'example.com'); return false; string to my URL to make it work?
    I have tried using http://www.example.com"?onClick="trackOutboundLink(this, 'Outbound Links', 'example.com'); return false;
    But it doesn't seem to work... Help appreciated.
    An example page is here: http://www.roomcritic.com/asia/alila-villas-uluatu-bali-hotel-real-guest-picture-gallery-a nd-review.html

    Hello,
    As per the instructions on link below you need to insert the code in <Head> section of the page.
    Conversion Tracking and Optimization | Facebook Help Center | Facebook
    Once you receive the code from Facebook you can insert it in Muse site.
    Open the page in Design mode and go to Page > Page Properties > Metadata > Html for <head>
    Paste the code in the space mentioned in the screenshot and you should be all set
    Regards
    Vivek

  • Techie Question about iWeb, outbound links, and Google Analytics

    Hi,
    I have a kind of pretty technical question about using Google Analytics (GA) with iWeb sites to measure clicks on outbound links. Here's the setup:
    1) My website's online, and GA is working properly.
    2) I don't sell stuff directly, but I do have a "Purchase" page which contains a link to a specific Amazon page.
    3) I'm pretty sure I can measure how many people go to the Purchase page using GA, but how do I measure whether visitors click on the Amazon link? It would be interesting to me to be able to gauge what the conversion rate is; that is, how many people actually proceed to purchase the product at Amazon.
    I've checked the GA instructions and there's a page about manually tracking clicks on outbound links but it requires some code inputting. I know zero about coding, but I'm pretty sure that in iWeb you can't get access to the source code to input the required code.
    Am I wrong about this? And if I am, then does anyone here know how to measure the clickthrough rate?
    Anyway, hope you can help. Thanks in advance.

    I don't know about the link tracking but you could have the link take you to a redirect page which automatically sends them to Amazon.com after a preset time, 0 seconds to whatever you'd like. You can put a counter on that redirect page, like StatCounter. StatCounter can tell you how many, from where they came, i.e country and area, repeat visits, etc.
    Tutorials #12 & #13 describe how to put a visible counter on a page but with a redirect page you wouldn't have to bother since it wouldn't be seen. You can get all of your information from your account on the StatCounter site.
    The redirect page would be a simple plain text page titled redirect.html and would look like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="refresh"
    content="0; Destination URL">
    <title>Redirecting or whatever you'd like to appear at the top of the browser</title>
    </head>
    <body>
    </body>
    </html>
    0 Is the number of seconds to wait before redirecting the visitor. If set to zero the visitor would not know they were being redirected. Replace Destination URL with the Amazon URL you want them to go to.
    OT

  • Can you track source of clicks on the "clickable" icons

    Can you track source of clicks on the "clickable" icons or track links in Dreamweaver?  I know about Google analytics for a page body but don't know for clicks.
    Thanks in advance

    It's called "event tracking".
    Here I will use Google Analytics and jQuery to record click event from any element with the class "clickable".
    <p class="clickable" id="clickable-element-1">Clickable element 1</p>
    <a class="clickable" id="clickable-element-2" title="Clcikable element 2" href="#">Clickable element 2</a>
    <img class="clickable" id="clickable-element-3" src="img/image.jpg" alt="Clickable elment 3" />
    <script>
        $(".clickable").click(function(e) {
            _gaq.push(["_trackEvent", "User interaction", "Click", $(this).attr("id")]);                          
    </script>
    More on Google Analytics event tracking: https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide
    Any tracking code should provide you with event tracking method. You can also write your own - I'd use AJAX call.
    Kenneth Kawamoto
    [link removed by moderator]
    Message was edited by: kennethkawamoto2   - Updated with slightly more "useful" example - hopefully

  • Tracking external links

    My HMTLDB application manages many external links.
    I'd like to somehow count which of these is used more often to be able to do things like:
    List most popular items
    Any suggestions on best methods to track external links?
    Anyone else done something like this?
    (i.e. use redirects or some other method)
    Thanks,
    Erik

    Erik ,
    You need to include your workspace ID in the proc call
    begin
    htp.p('<a href=HTMLDB_UTIL.COUNT_CLICK?p_url=http://yahoo.com&p_cat=yahoo&p_company=NNNN
    Click </a>')
    where NNNN = your workspace ID.
    You can obtain Workspace ID value using function HTMLDB_CUSTOM_AUTH.GET_SECURITY_GROUP_ID
    Regards,
    Sudha.

  • Is possible to use href= and onclick=Ajax.request to track outgoing link?

    Hi,
    I´m new in Oracle Apex and i'm trying now to track outgoing links on my Apex 3.2.1 application.
    When the user clicks on a link of my application that redirects to an outgoing site, I want them to be taken to the site (href) and I also want a background script that register in a oracle table this "click".
    For example, i have this link in an APEX page:
    When user cliks in this link, i would like to execute in background an oracle procedure, with a parameter. Let´s call this procedure, for example:
    SP_REGISTRA_ACESS_LINK(:P19_COD_TOPICO).
    This procedure insert a record in a table called BAC_ACESS, storing in it the SYSDATE and the value of ":P19_COD_TOPICO".
    Is it possible to link to a new site and call an AJAX request at the same time?
    Could some one give me a example of how i can do it? How i can implement it in my Apex 3.2.1 application?
    I´m working with Apex 3.2.1 and RDBMS 9i. I can not upgrade none of these releases, cause Apex is installed in a production database that can be upgrade now to 10g/11g.
    Best regards,
    Sergio Coutinho

    Jari,
    Very interesting. I didin´t know that this APEX_UTIL exists...
    Although that, i developed a customized access control to specific "media itens" of my application, for example:
    - Download of documents or programs;
    - Play of videos;
    - Play of audios;
    - Acess of CLOB records of a table, that were displayed as a kind of HTML page;
    - Outgoing links;
    I do not want to control all the Apex application as, for example, tabs, report pages, charts, forms, etc.
    All these media itens are stored on oracle tables, and where displayed in apex reports. Customer clicks on a link of this report and the media is displayed to the user.
    I have sucess to control quite all the medias display.
    The only one i could not have success to control are these outgoing links. These links were stored in a oracle table and were displayed in a apex interactive report.
    I would like to know if i can implement my custom rutine to register these access. I think that i could to it with Ajax scripts.
    Best regards,
    Sergio Coutinho

  • Issue in FF v 3.6.10: I have a page which have more than 20 link, clicking on these link opens up a popup using window.showModalDialog, for the first 20 popup opens up without any prob but for the 21st n more click it block the popup and do not open.

    Issue in FF v 3.6.10: I have a web page which have more than 20 link, clicking on each of these link opens up a pop-up using window.showModalDialog, for the first consecutive 20 popup opens up without any prob but for the 21st n more click it block the popup and do not open. This is m problem, the real user on the web page can click on more than 20 link in such a scenario it may create problem, please help

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 9.0 r999
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    In Firefox 3.6 and later versions you need the Next-Generation Java™ Plug-In present in Java 6 U10 and later (Linux: libnpjp2.so; Windows: npjp2.dll).
    http://java.com/en/download/faq/firefox_newplugin.xml
    See also http://java.sun.com/javase/6/webnotes/install/jre/manual-plugin-install-linux.html

  • Despite my selecting Firefox as default browser, any link clicked goes to open IE browser, but that too does not open and sends an error message. Please advise.

    I installed a HP printer on my desktop. To do this I had to temporarily discontinue some services (start/run/services.msc). The printer was installed successfully, but IE got currupted, it seems. Any link clicked went to IE instead of my default browser Firefox, but IE too would not function.
    Please advise what may have happened and how do I correct it?

    {Ctrl + P} and select your printer in the Printer - Name box near the top of that window.
    http://kb.mozillazine.org/Problems_printing_web_pages

  • User Usage Tracking History  Link  not  visible in Reports

    Hi All,
    I want to create reports based on user usage login details by using the user usage tracking history link in report section.But presently i do not find the link there.May i know what can be the problem behind this issue?
    Thanks in advance,
    Manish.

    This is only available in historical subject area. If you cannot see this please ask your admin to turn this on within your role.

  • Binding Sub Report based on link clicked in main report in BIDS

    Is it possible to bind Sub Report based on the link clicked in main report which is the parameter for sub report in BIDS?

    Hi Thanuja534,
    If I understand correctly, you want to add a drillthough action on a report to jump into another report with a specified parameter. 
    A report can contain links to other reports. The report that opens when we click the link in the main report is known as a drillthrough report. Drillthrough reports are a type of report that we access by clicking a link in the current report. When we click
    a text box that has a drillthrough action, we open the drillthrough report. If the drillthrough report has parameters, we must pass parameter values to each report parameter.
    Besides, drillthrough reports must exist on the same report server as the main report, but they can be in different folders. We can add a drillthrough link to any item that has an Action property, such as a text box, an image, or data points on a chart.
    For more information about adding parameters to pass to a Drillthrough Report, please see:
    http://technet.microsoft.com/en-us/library/aa337477(v=sql.105).aspx
    If you have any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to open show detail item on ADF link click

    Hi,
    Can anybody tell me how to open show detail item tab on link click ??
    thanks,
    Nitesh

    Hi,
    what Frank is saying..
    1. select showdetailitem component
    2. go to disclosure property
    3. attach a managed bean variable (return true/false)
    4. in the commandLink method set the variable true/false depending on requirement
    or
    1. select showdetailitem component
    2. create a binding in the managed bean
    3. in the commandLink method set showdetailitembinding.setDisclosed(true/false);
    4. add PPR
    refer http://jobinesh.blogspot.in/2010/12/programmatically-disclosing.html
    ~Abhijit
    Edited by: Abhijit Dutta on Mar 12, 2013 5:20 PM

  • Tracking/mapping links

    Hello all,
    I am working with a large number of InDesign files (72 to be exact). I am trying to find an efficient way to record all the links I use in every document.  I would like to create a list of all the links in each document to see if I can consolidate anything and replace a few links with 1 indesign file to function as the "link" instead. (A "multiple use file" as I call it. I use some the same pdfs over and over again so when things change, it's best to have one ID file serve as the master file which I can re-use and make changes to content year after year.)
    I'm stuck as to the best way to go about it.
    I could package the files to get a list of the links/locations and paste that info into an excel file...but would this be the quickest way?
    Perhaps I need to bite the bullet and just do that, but to package and compare links in all 72 files doesn't sound fun. I'm curious if anyone has any other suggestions on tracking/comparing links.
    Thanks!
    ~C

    Reading the comments to this post might be helpful for you. There are solutions of both the script and non-script variety.

  • Hi i have download os x mavericks system preferences go to users & groups click on account picture scroll down to Linked click on Linked i have the same picture twice how do i delete these pictures

    hi i have download os x mavericks system preferences go to users & groups click on account picture scroll down to Linked click on Linked i have the same picture twice how do i delete these pictures

    I am not connected even though I am.
    It is showing you are connected, but the signal strength is low.
    bookmarks
    Those are what is in the Favorites bar. They can be changed by deleting the from the Favorites bar. To add others, add them to the Favories bar.
    How can you remove that app?
    You can't.
    Un-install CleanMyMac. It can damage the entire system.
    Myth of the Dirty Mac
    CleanMyMac - Uninstall
    CleanMyMac2 Un-install
    If you are going to re-install, make sure you have 1 or preferably 2 full backups using Time Machine and/or a clone.
    Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About

  • Can I track opens and clicks on links in my emails?

    I sometimes send emails which contain a number of web links.
    Am I able to track:
    who opens their email?
    which links they click on?
    (like I do in Mailchimp)

    Thunderbird works to enhance user privacy, not invade it. So no those privacy invading techniques use by web marketers are not supported and where possible actively thwarted.

  • Tracking Link click

    Hi everyone!
    I have one doubt in JSP....
    I am having one JSP page (say Home page) which consists various url links(with a href tag).
    After clicking on to any of the links I want to keep the record of which link was clicked(i.e. which JSP page is called)
    I want to test it on home page itself instead of going into each JSP page to check which JSP was called everytime when user click on the available url on Home page.
    In short I want to track which reference link was clicked on Home page itself.
    Thanks & Regards
    Ketan.

    hi
    thanks for the reply...
    but I am trying to avoid modifying each jsp...
    so what I have decided is to write a javascript function in the Home JSP page itself which will take the url as an argument and is called when clicked on any of the link. In that function I am calling a Servlet with query string consisting of corresponding url.The sevlet will take care of storing the url in to the database as well as redirecting to that page.
    I have to follow the MVC architecture, so cant include files in JSPs to achieve the same.Instead , I am calling a Servlet which will work as a Controller.
    Thanks & Regards,
    Ketan

Maybe you are looking for

  • Select statement operators in ecc 6.

    Hi Experts, I have a small doubt about the '>=' ( greater than or equal to ) operator usage in select statement. Is this operator by any chance perform not as desired in ECC 6.0. Is it a good option to use 'GE' instead of '>='. ? It may sound a bit a

  • ITunes 7.6 and Windows Vista - Buying Ringones

    I have bought and downloaded a Song to my Itunes library. I click on the song and from the "store" menu I click on "Create a Ringtone" it prompts me to login into my account if I am not already logined in and then it tells me that I have not agreed t

  • Set my own key instead of using KeyGenerator.generateKey() - how?

    How can I set my own key instead of using KeyGenerator.generateKey()? I don´t see any method that is alowing this.

  • What happen during shutdown database

    Dear All, i have a questions and i enclosed some suggestions for the answer because I'm confused about the answers : What happens during shutdown oracle database : and the suggested answer : 1- When shutdown the database with NORMAL or IMMEDIATE opti

  • Unble to code to find a file path

    i just started using flex beta3 and i tried to developed an application in which i used an image control and a button-control.The thing is that i can provide the source path of the picture during design time and it get loaded but when i provided a co