Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I determine the exact browser and version using JavaScript?

share|improve this question
3  
why do you need that? use object detection instead. google.co.in/search?ie=UTF-8&q=object+detection+javascript – N 1.1 Mar 8 '10 at 11:34
Make sure you aren't basing critical functionality on this test. – Joe R Mar 8 '10 at 11:36
+1: good question because of suggested detection of feature support rather than extraction of name and version in answers. – Maxim Zaslavsky Mar 8 '10 at 11:44
Here's a better link to explain object detection: quirksmode.org/js/support.html – kmote Mar 12 '12 at 22:24

11 Answers

up vote 14 down vote accepted

It is always best to avoid browser-specific code entirely where possible. The JQuery $.support property is available for detection of support for particular features rather than relying on browser name and version.

In Opera for example, you can fake an internet explorer or firefox instance.

alt text

A detailed description of JQuery.support can be found here: http://api.jquery.com/jQuery.support/

When coding websites, i always make sure, that basic functionality like navigation is also accessible to non-js users. This may be object to discussion and can be ignored if the homepage is targeted to a special audience.

share|improve this answer
2  
Sometimes you really need to know the browser, when the same features are supported in a different way. So, if making use of jQuery, $.browser is the right way, as indicated by user288744 – Bogdan D Dec 5 '12 at 16:32
If you'd like to do feature detection for such cases, imho it's best to detect the features you want directly as stated in my answer, browser behaviour may change over time. A good example is AJAX-Support which may me found out with $.support, or better yet directly: xhr = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();. It makes absolutely no sense test for $browser = 'ie' and then make use of ActiveXObject if you can directly test for ActiveXObject. – Phil Rykoff May 8 at 5:48
 navigator.sayswho= (function(){
  var N= navigator.appName, ua= navigator.userAgent, tem;
  var M= ua.match(/(opera|chrome|safari|firefox|msie)\/?\s*(\.?\d+(\.\d+)*)/i);
  if(M && (tem= ua.match(/version\/([\.\d]+)/i))!= null) M[2]= tem[1];
  M= M? [M[1], M[2]]: [N, navigator.appVersion,'-?'];
  return M;
 })();

As the name implies, this will tell you the [name,version] supplied by the browser.

It is handy for sorting test and error results, when you are testing new code on multiple browsers.

share|improve this answer
+1...Works like a charm in all 3 browsers : FF, Chrome, & IE – asprin Oct 1 '12 at 7:46

All the information about web browser is contained in navigator object. The name and version are there.

var appname = window.navigator.appName;

Source: javascript browser detection

share|improve this answer
2  
Nice job on your first answer. – james.garriss Oct 4 '12 at 17:27
6  
Chrome says "Netscape" – Incognito Dec 14 '12 at 19:58
1  
Firefox 20.0.1 on XP says "Netscape" too. – Metalcoder Apr 17 at 12:12
//Copy and paste this into your code/text editor, and try it

//Before you use this to fix compatability bugs, it's best to try inform the browser provider that you have found a bug and there latest browser may not be up to date with the current web standards

//Since none of the browsers use the browser identification system properly you need to do something a bit like this

//Write browser identification
document.write(navigator.userAgent + "<br>")

//Detect browser and write the corresponding name
if (navigator.userAgent.search("MSIE") >= 0){
    document.write('"MS Internet Explorer ');
    var position = navigator.userAgent.search("MSIE") + 5;
    var end = navigator.userAgent.search("; Windows");
    var version = navigator.userAgent.substring(position,end);
    document.write(version + '"');
}
else if (navigator.userAgent.search("Chrome") >= 0){
document.write('"Google Chrome ');// For some reason in the browser identification Chrome contains the word "Safari" so when detecting for Safari you need to include Not Chrome
    var position = navigator.userAgent.search("Chrome") + 7;
    var end = navigator.userAgent.search(" Safari");
    var version = navigator.userAgent.substring(position,end);
    document.write(version + '"');
}
else if (navigator.userAgent.search("Firefox") >= 0){
    document.write('"Mozilla Firefox ');
    var position = navigator.userAgent.search("Firefox") + 8;
    var version = navigator.userAgent.substring(position);
    document.write(version + '"');
}
else if (navigator.userAgent.search("Safari") >= 0 && navigator.userAgent.search("Chrome") < 0){//<< Here
    document.write('"Apple Safari ');
    var position = navigator.userAgent.search("Version") + 8;
    var end = navigator.userAgent.search(" Safari");
    var version = navigator.userAgent.substring(position,end);
    document.write(version + '"');
}
else if (navigator.userAgent.search("Opera") >= 0){
    document.write('"Opera ');
    var position = navigator.userAgent.search("Version") + 8;
    var version = navigator.userAgent.substring(position);
    document.write(version + '"');
}
else{
    document.write('"Other"');
}

//Use w3schools research the `search()` method as other methods are availible
share|improve this answer
Please do not recommend w3schools – Connor May 15 at 14:54
var browser = navigator.appName;
var version = navigator.appVersion;

Note, however, that both will not necessarily reflect the truth. Many browsers can be set to mask as other browsers. So, for example, you can't always be sure if a user is actually surfing with IE6 or with Opera that pretends to be IE6.

share|improve this answer
1  
+1: contrary to the previous downvote, in theory, this is the right way; in practice, browser vendors fill these values with questionable content; see the docs at MDC ( developer.mozilla.org/En/DOM/Window.navigator ) and MSDN ( msdn.microsoft.com/en-us/library/ms535867%28VS.85%29.aspx ); Google led me also to the follwing page (out of date, no Chrome yet), which shows that it's mainly Safari which reports garbage: javascriptkit.com/jsref/navigator.shtml – Christoph Mar 8 '10 at 12:00

This is something I wrote to get client info

var ua = navigator.userAgent.toLowerCase();
var check = function(r) {
    return r.test(ua);
};
var DOC = document;
var isStrict = DOC.compatMode == "CSS1Compat";
var isOpera = check(/opera/);
var isChrome = check(/chrome/);
var isWebKit = check(/webkit/);
var isSafari = !isChrome && check(/safari/);
var isSafari2 = isSafari && check(/applewebkit\/4/); // unique to
// Safari 2
var isSafari3 = isSafari && check(/version\/3/);
var isSafari4 = isSafari && check(/version\/4/);
var isIE = !isOpera && check(/msie/);
var isIE7 = isIE && check(/msie 7/);
var isIE8 = isIE && check(/msie 8/);
var isIE6 = isIE && !isIE7 && !isIE8;
var isGecko = !isWebKit && check(/gecko/);
var isGecko2 = isGecko && check(/rv:1\.8/);
var isGecko3 = isGecko && check(/rv:1\.9/);
var isBorderBox = isIE && !isStrict;
var isWindows = check(/windows|win32/);
var isMac = check(/macintosh|mac os x/);
var isAir = check(/adobeair/);
var isLinux = check(/linux/);
var isSecure = /^https/i.test(window.location.protocol);
var isIE7InIE8 = isIE7 && DOC.documentMode == 7;

var jsType = '', browserType = '', browserVersion = '', osName = '';
var ua = navigator.userAgent.toLowerCase();
var check = function(r) {
    return r.test(ua);
};

if(isWindows){
    osName = 'Windows';

    if(check(/windows nt/)){
        var start = ua.indexOf('windows nt');
        var end = ua.indexOf(';', start);
        osName = ua.substring(start, end);
    }
} else {
    osName = isMac ? 'Mac' : isLinux ? 'Linux' : 'Other';
} 

if(isIE){
    browserType = 'IE';
    jsType = 'IE';

    var versionStart = ua.indexOf('msie') + 5;
    var versionEnd = ua.indexOf(';', versionStart);
    browserVersion = ua.substring(versionStart, versionEnd);

    jsType = isIE6 ? 'IE6' : isIE7 ? 'IE7' : isIE8 ? 'IE8' : 'IE';
} else if (isGecko){
    var isFF =  check(/firefox/);
    browserType = isFF ? 'Firefox' : 'Others';;
    jsType = isGecko2 ? 'Gecko2' : isGecko3 ? 'Gecko3' : 'Gecko';

    if(isFF){
        var versionStart = ua.indexOf('firefox') + 8;
        var versionEnd = ua.indexOf(' ', versionStart);
        if(versionEnd == -1){
            versionEnd = ua.length;
        }
        browserVersion = ua.substring(versionStart, versionEnd);
    }
} else if(isChrome){
    browserType = 'Chrome';
    jsType = isWebKit ? 'Web Kit' : 'Other';

    var versionStart = ua.indexOf('chrome') + 7;
    var versionEnd = ua.indexOf(' ', versionStart);
    browserVersion = ua.substring(versionStart, versionEnd);
}else{
    browserType = isOpera ? 'Opera' : isSafari ? 'Safari' : '';
}
share|improve this answer
isn't it a little wasteful to always run all checks? seems pointless to check for Linux if you know it's a Windows isn't it... – Matthias Mar 8 '10 at 13:29
@Matthias, thanks for the suggestion. I'll try to optimize the solution. The same logic can be applied in testing for browsers also. – Arun P Johny Mar 8 '10 at 14:58

You could use the jQuery library to detect the browser version.

Example:

jQuery.browser.version

However, this only makes sense if you are also using other functions of jQuery. Adding an entire library just to detect the browser seems like overkill to me.

More information: http://api.jquery.com/jQuery.browser/

(you have to scroll down a bit)

share|improve this answer
I've just tried on win 8 chrome 25 and ie 10. Well, it fails completely. After 3 years any current support would be nice. – Cihad Turhan Jan 21 at 9:52
3  
This feature was deprecated at jQuery 1.3, and finally removed at jQuery 1.9. So, it's best to not rely on it. – Metalcoder Apr 17 at 12:19

This tells you all the details about your browser and the version of it.

<!DOCTYPE html>
<html>
<body>
<div id="example"></div>

<script>

txt = "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
txt+= "<p>Browser Name: " + navigator.appName + "</p>";
txt+= "<p>Browser Version: " + navigator.appVersion + "</p>";
txt+= "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>";
txt+= "<p>Platform: " + navigator.platform + "</p>";
txt+= "<p>User-agent header: " + navigator.userAgent + "</p>";
txt+= "<p>User-agent language: " + navigator.systemLanguage + "</p>";

document.getElementById("example").innerHTML=txt;

</script>

</body>
</html>
share|improve this answer
Is this supported on all platforms? – TheBlackBenzKid Mar 20 at 12:22
checked in firefox,IE and chrome....works there....please do let me know your feedback – malcolmX Mar 23 at 14:24
and incase if it meets up with your expectation,don't hesitate to vote for my answer ;) – malcolmX Mar 23 at 14:26
Appreciated. Upvoted. Much of this is available at w3schools and mozilla dev centre library – TheBlackBenzKid Mar 25 at 9:59
thank you!!!!!!! – malcolmX Mar 25 at 11:07

This little library may help you. But be aware that browser detection is not always the solution.

share|improve this answer

I recommend using the tiny javascript library Bowser, yes no r. It is based on the navigator.userAgent and quite well tested for all browsers including iphone, android etc.

https://github.com/ded/bowser

You can use simply say:

if (bowser.msie && bowser.version <= 6) {
  alert('Hello China');
} else if (bowser.firefox){
  alert('Hello Foxy');
} else if (bowser.chrome){
  alert('Hello Silicon Valley');
} else if (bowser.safari){
  alert('Hello Apple Fan');
} else if(bowser.iphone || bowser.android){
  alert('Hello mobile');
}
share|improve this answer

Not exactly what you want, but close to it:

var jscriptVersion = /*@cc_on @if(@_jscript) @_jscript_version @else @*/ false /*@end @*/;
var geckoVersion = navigator.product === 'Gecko' && navigator.productSub;
var operaVersion = 'opera' in window && 'version' in opera && opera.version();

The variables will contain the appropriate version or false if it is not available.

I'd appreciate it if someone using Chrome could find out if you can use window.chrome in a similar way to window.opera.

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.