Skip to content

Instantly share code, notes, and snippets.

@stuwilli
Created May 6, 2015 12:48
Show Gist options
  • Save stuwilli/6598a0e1654653b01c3a to your computer and use it in GitHub Desktop.
Save stuwilli/6598a0e1654653b01c3a to your computer and use it in GitHub Desktop.
IE Detection
function isIE () {
if (document.documentMode) {
return document.documentMode;
} else {
for (var i = 7; i > 0; i--) {
var div = document.createElement("div");
div.innerHTML = "<!--[if IE " + i + "]><span></span><![endif]-->";
if (div.getElementsByTagName("span").length) {
return i;
}
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment