How To Detect If Visitor Clicked on Toolbar or has Toolbar?

Discussion in 'Programming' started by blueoceanwave, Aug 4, 2006.

  1. #1
    Anybody have an idea on how to detect if a user has a toolbard, such as google toolbar or the new live.com toolbar?

    Thanks,
     
    blueoceanwave, Aug 4, 2006 IP
  2. JosefV

    JosefV Peon

    Messages:
    138
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I would also like to know how to do this, anybody knows?
     
    JosefV, Aug 8, 2006 IP
  3. giraph

    giraph Guest

    Messages:
    484
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    0
    #3
    
    
    
    <html>
    <head>
    <title>Google Toolbar Detection</title>
    
    <object id="g1" classid="clsid:6CB5E471-C305-11D3-99A8-000086395495" style="display: none;"></object>
    <object id="g2" classid="clsid:00EF2092-6AC5-47c0-BD25-CF2D5D657FEB" style="display: none;"></object>
    </head>
    <body>
    
    <script language="javascript" type="text/javascript">
    <!--
    if (navigator.appName == "Microsoft Internet Explorer") {
    if (document.GoogleActivated) {
    alert("The Google Toolbar \(" + document.GoogleToolbarVersion + "\) was detected on your computer.");
    }
    else if (document.g2 && typeof(g2.Search) != "undefined") {
    alert("The Google Toolbar was detected on your computer.");
    }
    else {
    alert("The Google Toolbar was not detected on your computer.");
    }
    }
    else {
    alert("The Google Toolbar requires Microsoft Windows and Internet Explorer 5.0 or higher.");
    }
    //-->
    </script>
    
    </body>
    </html>
    
    
    Code (markup):
     
    giraph, Aug 8, 2006 IP
  4. blueoceanwave

    blueoceanwave Peon

    Messages:
    210
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Giraph, this works great on IE6, thanks.

    Now, I just need something that works with firefox.

    Also, any idea on how to impliment this in PHP.... but I think I can figure that one out.
     
    blueoceanwave, Aug 9, 2006 IP
  5. asyrov

    asyrov Peon

    Messages:
    63
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #5
    It doen't look like this code works for v.4 of google toolbar...
     
    asyrov, Sep 18, 2006 IP