Skip to content

Instantly share code, notes, and snippets.

@kaievns
Created December 29, 2010 18:47
Show Gist options
  • Save kaievns/758876 to your computer and use it in GitHub Desktop.
Save kaievns/758876 to your computer and use it in GitHub Desktop.
IE < 9 check
function is_IE8_or_less() {
try {
document.createElement('<input/>');
// IE8 or less
return true;
} catch(e) {
// IE9 or a W3C browser
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment