Skip to content

Instantly share code, notes, and snippets.

@ridgehkr
Created August 31, 2013 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ridgehkr/6398232 to your computer and use it in GitHub Desktop.
Save ridgehkr/6398232 to your computer and use it in GitHub Desktop.
Detect the user's IE version and add that class to the html tag. JS version of https://gist.github.com/ridgehkr/5985810
var isIE8, test_version;
test_version = 8;
isIE8 = (document.documentMode != null) && document.documentMode === test_version;
if (isIE8) {
return document.documentElement.className += ' ie8';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment