Skip to content

Instantly share code, notes, and snippets.

@ben1one
Last active August 29, 2015 14:03
Show Gist options
  • Save ben1one/1641b98c3b3acbc33b43 to your computer and use it in GitHub Desktop.
Save ben1one/1641b98c3b3acbc33b43 to your computer and use it in GitHub Desktop.
getInternetExplorerVersion()
function getInternetExplorerVersion()
// 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