5

I am using the following code to get the version of IE in a system.

    var browser = navigator.appName;
    var b_version = navigator.appVersion;
    var version = parseFloat(b_version);
    alert(version);

But the version always get is 4 in IE^ and IE7. How can I get the exact version?

abatishchev
  • 98,240
  • 88
  • 296
  • 433
Sauron
  • 16,668
  • 41
  • 122
  • 174

4 Answers4

7

You got 4 because of navigator.appVersion strings starts with 4.0 like this.

4.0 (compatible; MSIE 6.0; Windows NT 5.0; ...)

If you do like this, you will get MSIE 6.0 for above case

alert(navigator.appVersion.match(/MSIE [\d.]+/))

If you only want 6.0 you could do like

alert(navigator.appVersion.match(/MSIE ([\d.]+)/)[1])
YOU
  • 120,166
  • 34
  • 186
  • 219
4

It's generally not a good idea to use version detection — in fact, even browser detection isn't recommended! Instead, try object detection.

Avi Flax
  • 50,872
  • 9
  • 47
  • 64
2

The below function isIE returns IE version if IE is detected else returns FALSE

function isIE () {
  var myNav = navigator.userAgent.toLowerCase();
  return (myNav.indexOf('msie') != -1) ? parseInt(myNav.split('msie')[1]) : false;
}

This is based on the answer here by weroro.

Community
  • 1
  • 1
Binod Kalathil
  • 1,939
  • 1
  • 30
  • 43
-2

Try something like this:

<script language="javascript">
        Event.observe(window, 'load', function() {
            var el = $("browserName");
            var BO = detectBrowser();
            if(BO.ie6){
                el.innerHTML = "<b>We do not support IE6. Please click <a href=\"http://www.microsoft.com/windows/downloads/ie/getitnow.mspx\">here</a> to upgrade.</b>";
            }else{
                el.innerHTML = "<b>Thank You for not running IE6.</b>";
            }
        });
</script>
Chirag Patel
  • 5,819
  • 8
  • 35
  • 38