Created
August 6, 2014 15:01
-
-
Save gerasimua/3bb149928ed4bdb38656 to your computer and use it in GitHub Desktop.
IE check from css-tricks.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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