Skip to content

Instantly share code, notes, and snippets.

@debloper
Created July 20, 2012 16:27
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 debloper/3151684 to your computer and use it in GitHub Desktop.
Save debloper/3151684 to your computer and use it in GitHub Desktop.
Feature-detecting old IE version
if (!window.addEventListener && !!window.attachEvent) {
console.log("IE lt 9");
} else {
console.log("IE gte 9");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment