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 need to detect not only the browser type but version as well using jQuery. Mostly I need to find out if it is IE 8 or not.

I am not sure if I am doing it correctly.

If I do :

if (jQuery.browser.version >= 8.0) {
dosomething}

I am not sure it will work for version 8.123.45.6 or will it?

share|improve this question
4  
Why do you want this?! – svinto Feb 4 '10 at 19:03
4  
the answers that are suggested below suggest you use jQuery.browser. However, the jQuery documentation deprecates the use of jQuery.browser. Instead, they suggest you use the jQuery.support and point to a feature that is not supported to flag the browser. For example, you can use if(jQuery.support.opacity == false){ your IE8 and IE7 code } – IberoMedia Sep 23 '12 at 10:10
This jquery.support.opacity just did what I wanted. Thanks... – nrod Jan 17 at 12:59

11 Answers

up vote 59 down vote accepted

It is documented in jQuery API Documentation. Check for Internet Explorer with $.browser.msie and then check its version with $.browser.version.

share|improve this answer
if I do : if (jQuery.browser.version >= 8.0) { dosomething} I am not sure it will work for version 8.123.45.6 or will it? – salmane Feb 4 '10 at 19:08
12  
It is a string, so you should do if(jQuery.browser.version.substring(0, 2) == "8.") { ... }. That way it will work with all versions of IE8. – AndiDog Feb 4 '10 at 19:10
12  
jQuery.browser was deprecated in 1.3 and may be moved to a plugin in the future. See the jQuery.browser docs – bendytree Aug 4 '11 at 20:09
Thankfully itt's still around and there's no mention of deprecation, @bendytree – Alastair Jan 9 at 9:07
26  
jquery.browser is removed in 1.9 – Mandeep Jain Jan 24 at 9:42
show 2 more comments

This should work for all IE8 minor versions

if ($.browser.msie  && parseInt($.browser.version, 10) === 8) {
  alert('IE8'); 
} else {
  alert('Non IE8');
}

-- update

Please note that $.browser is removed from jQuery 1.9

share|improve this answer

I think the best way would be this:

From HTML5 boilerplate:

<!--[if lt IE 7]> <html lang="en-us" class="no-js ie6 oldie"> <![endif]-->
<!--[if IE 7]>    <html lang="en-us" class="no-js ie7 oldie"> <![endif]-->
<!--[if IE 8]>    <html lang="en-us" class="no-js ie8 oldie"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en-us" class="no-js"> <!--<![endif]-->

in JS:

if( $("html").hasClass("ie8") ) { /* do your things */ };

especially since $.browser has been removed from jQuery 1.9+.

share|improve this answer
6  
This is a very clever way of detecting IE versions. I like a lot! – Greg Jun 13 '12 at 21:21
+1 For anyone using HTML5 boilerplate this is super neat. – Freelancer Jul 12 '12 at 10:05
but does not work if your website is delivered with 'Content-type: application/xhtml+xml' header, than these conditional comments are ignored – philipp Sep 20 '12 at 5:10
Very clever ... but worth noting that you need check the current classes added by the conditionals in HTML5BP. At the moment I think the class is lt-ie9 AOT ie8 – byronyasgur Mar 11 at 20:31

Don't forget that you can also use HTML to detect IE8.

<!--[if IE 8]>
<script type="text/javascript">
    ie = 8;
</script>
<![endif]-->

Having that before all your scripts will let you just check the "ie" variable or whatever.

share|improve this answer
This syntax also supports "less than" ("[if lt IE 7]") and "greater than" ("[if gt IE 8]") comparators. – spiffytech Dec 5 '12 at 15:27

You should also look at jQuery.support. Feature detection is a lot more reliable than browser detection for coding your functionality (unless you are just trying to log browser versions).

share|improve this answer
3  
how would you use jQuery.support to detect IE8? – BishopZ Jul 6 '12 at 21:26
if AJAX is what you are looking for then you can use jQuery.support.ajax which returns true if the browser supports AJAX – Jonathan Lin Oct 23 '12 at 10:15
This answer should help: stackoverflow.com/questions/1944169/… – helgatheviking Mar 22 at 23:01

document.documentMode is undefined if the browser is not IE8,

it returns 8 for standards mode and 7 for 'compatable to IE7'

If it is running as IE7 there are a lot of css and dom features that won't be supported.

share|improve this answer

Here is the Jquery browser detect plugin to identify browser/os detection.

You can use this for styling purpose after including the plugin.

$("html").addClass($.os.name);
$("body").addClass($.browser.className);
$("body").addClass($.browser.name);
share|improve this answer

You can easily detect which type and version of the browser, using this jquery

$(document).ready(function()
{
 if ( $.browser.msie ){
    if($.browser.version == '6.0')
    {   $('html').addClass('ie6');
    }
    else if($.browser.version == '7.0')
    {   $('html').addClass('ie7');
    }
    else if($.browser.version == '8.0')
    {   $('html').addClass('ie8');
    }
    else if($.browser.version == '9.0')
    {   $('html').addClass('ie9');
    }
 }
 else if ( $.browser.webkit )
 { $('html').addClass('webkit');
 }
 else if ( $.browser.mozilla )
 { $('html').addClass('mozilla');
 }
 else if ( $.browser.opera )
 { $('html').addClass('opera');
 }
});
share|improve this answer

You can use $.browser to detect the browser name. possible values are :

  • webkit (as of jQuery 1.4)
  • safari (deprecated)
  • opera
  • msie
  • mozilla

or get a boolean flag: $.browser.msie will be true if the browser is MSIE.

as for the version number, if you are only interested in the major release number - you can use parseInt($.browser.version, 10). no need to parse the $.browser.version string yourself.

Anyway, The $.support property is available for detection of support for particular features rather than relying on $.browser.

share|improve this answer

If you fiddle with browser versions it lead to no good very often. You dont' want to implement it by yourself. But you can Modernizr made by Paul Irish and other smart folks. It will detect what the browser actually can do and put apropriate classes in <html> element. However with Modernizr, you can test IE version like this:

$('html.lt-ie9').each() {
    // this will execute if browser is IE 8 or less
}

Similary, you can use .lt-ie8, and .lt-ie7.

share|improve this answer

Note:

1) $.browser appears to be dropped in jQuery 1.9+ (as noted by Mandeep Jain). It is recommended to use .support instead.

2) $.browser.version can return "7" in IE >7 when the browser is in "compatibility" mode.

3) As of IE 10, conditional comments will no longer work.

4) jQuery 2.0+ will drop support for IE 6/7/8

5) document.documentMode appears to be defined only in Internet Explorer 8+ browsers. The value returned will tell you in what "compatibility" mode Internet Explorer is running. Still not a good solution though.

I tried numerous .support() options, but it appears that when an IE browser (9+) is in compatibility mode, it will simply behave like IE 7 ... :(

So far I only found this to work (kind-a):

(if documentMode is not defined and htmlSerialize and opacity are not supported, then you're very likely looking at IE <8 ...)

if(!document.documentMode && !$.support.htmlSerialize && !$.support.opacity) 
{
    // IE 6/7 code
}
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.