Skip to content

Instantly share code, notes, and snippets.

@socheatsok78
Created September 10, 2020 04:12
Show Gist options
  • Save socheatsok78/72e253fb9ecaa6d9a5ecbe517461e4f8 to your computer and use it in GitHub Desktop.
Save socheatsok78/72e253fb9ecaa6d9a5ecbe517461e4f8 to your computer and use it in GitHub Desktop.
Check if the current device is a mobile browser
const isMobile = () => {
const match = window.matchMedia('(pointer:coarse)')
return (match && match.matches)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment