Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 5 addons / extensions for FF, Chrome, IE, Opera and Safari.

I need the code to recognize the user browser and redirect (on click in an install button) to download the corresponding addon.

Can you please help?

share|improve this question
wouldn't it be cool if you chose an answer :) – Andrew Fox Apr 29 at 5:55

2 Answers

Googling for browser reliable detection often results in checking the User agent string. This method is not reliable, because it's trivial to spoof this value.
I've written a method to detect browsers by duck-typing.

Only use the browser detection method if it's truly necessary, such as showing browser-specific instructions to install an extension. Use feature detection when possible.

Demo: http://jsfiddle.net/9zxvE/238/

var isOpera = !!window.opera || navigator.userAgent.indexOf('Opera') >= 0;
    // Opera 8.0+ (UA detection to detect Blink/v8-powered Opera)
var isFirefox = typeof InstallTrigger !== 'undefined';   // Firefox 1.0+
var isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0;
    // At least Safari 3+: "[object HTMLElementConstructor]"
var isChrome = !!window.chrome;                          // Chrome 1+
var isIE = /*@cc_on!@*/false;                            // At least IE6

Analysis of reliability

The previous method depended on properties of the rendering engine (-moz-box-sizing and -webkit-transform) to detect the browser. These prefixes will eventually be dropped, so to make detection even more robust, I switched to browser-specific characteristics:

  • Internet Explorer: JScript's Conditional compilation.
  • Firefox: Firefox's API to install add-ons: InstallTrigger
  • Chrome: The global chrome object, containing several properties including a documented chrome.webstore object.
  • Safari: An unique naming pattern in its naming of constructors. This is the least durable method of all listed properties, because it's undocumented. On the other hand, there's no benefit in renaming the constructor, so it's likely to stay for a long while.
  • Opera: window.opera has existed for years, but will be dropped when Opera replaces its engine with Blink + V8 (used by Chromium). This has not happened yet, so the only reliable way to detect Opera is to use User agent string.

Successfully tested in:

  • Firefox 0.8 - 20
  • Chrome 1.0 - 26
  • Opera 8.0 - 12.15
  • Safari 3.0 - 6.0
  • IE 6 - 10
share|improve this answer
2  
@Joseph Yes to the Opera (and Chrome 15+) method. I detect FF and Chrome via CSS feature detection, IE via a documented "hack". I don't know the name for the used Safari detection (I've found the feature myself, it's not documented anywhere). – Rob W Mar 24 '12 at 13:28
1  
@user1289292 The code in my answer defines the variables. Usage example: if (isFirefox) { ... show right extension/link... }. – Rob W Mar 24 '12 at 17:44
2  
Browser sniffing is the wrong approach, no matter how you do it. Use feature tests, and test the features that you actually use instead. That way, it will work where the actually required feature is supported. The in operator is error-prone with host objects, BTW; use the typeof operator instead. – PointedEars May 29 '12 at 10:27
1  
@PointedEars I guess that you've downvoted my answer. Can you elaborate why? Since the solution is always working (no exceptions), what is the motivation for the downvote, which indicates that an answer is "not useful"? – Rob W May 29 '12 at 13:24
2  
About browser sniffing: Since it doesn't work (reliably), it's not useful. Your examples don't require browser sniffing; let the user access the information they need. The Specification shows that the in operator uses the internal [[HasProperty]] method which is one of those that host objects do not need to implement as specified. typeof uses GetValue() which uses [[Get]] which has the same problem. Still tests have shown that typeof is more reliable. typeof also is backwards-compatible, which in is not. If you're saying that in always works, you haven't tested enough. – PointedEars May 29 '12 at 13:46
show 12 more comments

Quirksmode have a great script for this....
http://www.quirksmode.org/js/detect.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.