Skip to content

Instantly share code, notes, and snippets.

@lyonsun
Created February 22, 2014 07:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lyonsun/9150182 to your computer and use it in GitHub Desktop.
Save lyonsun/9150182 to your computer and use it in GitHub Desktop.
javascript, detect if it is mobile
var windowWidth = window.screen.width < window.outerWidth ?
window.screen.width : window.outerWidth;
var mobile = windowWidth < 500;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment