Skip to content

Instantly share code, notes, and snippets.

@tzwel
Last active July 19, 2025 10:05
Show Gist options
  • Save tzwel/43a1c9a954062880251af17743a24f22 to your computer and use it in GitHub Desktop.
Save tzwel/43a1c9a954062880251af17743a24f22 to your computer and use it in GitHub Desktop.
Is phone? Reliable detection of mobile devices in JS
const isPhone = navigator?.userAgentData?.mobile || /iPhone|iPad|iPod|Android/i.test(navigator.userAgent) || !window.matchMedia('(hover: hover)').matches && window.innerWidth <= 1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment