Skip to content

Instantly share code, notes, and snippets.

@zeropaper
Created October 27, 2014 13:03
Show Gist options
  • Save zeropaper/7e1a8f5b7f53be7b4be1 to your computer and use it in GitHub Desktop.
Save zeropaper/7e1a8f5b7f53be7b4be1 to your computer and use it in GitHub Desktop.
The sales guys at MS pretend it's not needed anymore they probably never wrote a line of CSS... :(
// Inspired by http://jsfiddle.net/evildonald/jLuF5/
function detectIE() {
var $ = window.$ || window.jQuery || angular.element;
var s = document.body.style;
var version;
if (s.msTextCombineHorizontal !== undefined) {
version = 11;
}
else if (s.msFlexOrder !== undefined) {
version = 10;
}
else if (s.msTransform !== undefined) {
version = 9;
}
if (version) {
$('html').addClass('ie ie'+version);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment