Created
June 21, 2012 05:32
-
-
Save stalmok/2964043 to your computer and use it in GitHub Desktop.
JavaScript: test if Mac or PC
This file contains 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
if (navigator.userAgent.indexOf('Mac OS X') != -1) { | |
$("body").addClass("mac"); | |
} else { | |
$("body").addClass("pc"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment