Created
January 14, 2015 20:46
-
-
Save alkrauss48/441b42a16562557ec8ee to your computer and use it in GitHub Desktop.
Get Internet Explorer Version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
getInternetExplorerVersion: function(){ | |
// Returns the version of Internet Explorer or a -1 | |
// (indicating the use of another browser). | |
var rv = -1; // Return value assumes failure. | |
if (navigator.appName == 'Microsoft Internet Explorer') | |
{ | |
var ua = navigator.userAgent; | |
var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})"); | |
if (re.exec(ua) != null) | |
rv = parseFloat( RegExp.$1 ); | |
} | |
return rv; | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment