Created
October 26, 2021 15:17
-
-
Save fysherman/fb38e70e22fbc5d97b68472b649bcc58 to your computer and use it in GitHub Desktop.
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
// Check if device is mobile | |
function isMobileDevice() { | |
return /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent); | |
} | |
// Check if device is touchable | |
function isTouchDevice() { | |
return 'ontouchstart' in document.documentElement; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment