Skip to content

Instantly share code, notes, and snippets.

@stasgavrylov
Created February 25, 2016 14:44
Show Gist options
  • Select an option

  • Save stasgavrylov/2c441fd8e06beda7ebc3 to your computer and use it in GitHub Desktop.

Select an option

Save stasgavrylov/2c441fd8e06beda7ebc3 to your computer and use it in GitHub Desktop.
Basic mobile device detection
var UA = navigator.userAgent
var regex = /iPad|iPhone|iPod|Android/i
if (regex.test(UA)) ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment