Created
October 14, 2014 15:01
-
-
Save handleman/3c99e754065f647b082f to your computer and use it in GitHub Desktop.
Best way to detect Mac OS X or Windows computers with JavaScript or jQuery
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
var isMac = navigator.platform.toUpperCase().indexOf('MAC')>=0; | |
var isMacLike = navigator.platform.match(/(Mac|iPhone|iPod|iPad)/i)?true:false; | |
var isIOS = navigator.platform.match(/(iPhone|iPod|iPad)/i)?true:false; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment