Skip to content

Instantly share code, notes, and snippets.

@fysherman
Created October 26, 2021 15:17
Show Gist options
  • Save fysherman/fb38e70e22fbc5d97b68472b649bcc58 to your computer and use it in GitHub Desktop.
Save fysherman/fb38e70e22fbc5d97b68472b649bcc58 to your computer and use it in GitHub Desktop.
// 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