Skip to content

Instantly share code, notes, and snippets.

@Roach
Created June 17, 2011 17:50
Show Gist options
  • Save Roach/1031894 to your computer and use it in GitHub Desktop.
Save Roach/1031894 to your computer and use it in GitHub Desktop.
var testr = {};
testr.IEVersion = function()
{
var ua = navigator.userAgent;
var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
if (re.exec(ua)){
ver = parseFloat( RegExp.$1 );
if ( ver > -1 )
{
return ver
}
}
}
if(testr.IEVersion){
alert(testr.IEVersion())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment