Skip to content

Instantly share code, notes, and snippets.

@gerasimua
Created August 6, 2014 15:01
Show Gist options
  • Save gerasimua/3bb149928ed4bdb38656 to your computer and use it in GitHub Desktop.
Save gerasimua/3bb149928ed4bdb38656 to your computer and use it in GitHub Desktop.
IE check from css-tricks.com
var isMSIE = /*@cc_on!@*/0;
if (isMSIE) {
// do IE-specific things
} else {
// do non IE-specific things
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment