Skip to content

Instantly share code, notes, and snippets.

@bobdobbalina
Created January 20, 2021 19:19
Show Gist options
  • Save bobdobbalina/4c3fcaa00f4cbb412257bf70839f5c10 to your computer and use it in GitHub Desktop.
Save bobdobbalina/4c3fcaa00f4cbb412257bf70839f5c10 to your computer and use it in GitHub Desktop.
Javascript: Detect device type
const detectDeviceType = () =>
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)
? 'mobile'
: 'desktop';
detectDeviceType(); // "mobile" or "desktop"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment