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?

link|improve this question

feedback

5 Answers

up vote 3 down vote accepted

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

link|improve this answer
Its really a good technique. But is there any performance issues?? – Sauron Dec 18 '09 at 6:06
I'm pretty sure there are not. This is, as I understand it, a "best practice". – Avi Flax Dec 18 '09 at 18:18
And it's certainly faster than anything involving regular expressions, and probably string slicing too. – Avi Flax Dec 18 '09 at 18:18
Thanks for your reply – Sauron Dec 21 '09 at 5:22
feedback

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>
link|improve this answer
Where from the 'Event.observe'? – Sauron Dec 18 '09 at 5:17
feedback
var match = navigator.userAgent.match('MSIE (.)');
var version = match && match.length > 1 ? match[1] : 'unknown';
link|improve this answer
feedback

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])
link|improve this answer
feedback

You can get the version of Internet Explorer in the Windows Registry:

On windows, run regedit and navigate to this key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer -> Version

Mine returned 7.0.5730.13

There are tools to grab this registry key with a java command.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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