Skip to content

Instantly share code, notes, and snippets.

@chancesmith
Created April 20, 2016 19:38
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 chancesmith/06b434d5dccaac6c8fdb21c28a4fb79a to your computer and use it in GitHub Desktop.
Save chancesmith/06b434d5dccaac6c8fdb21c28a4fb79a to your computer and use it in GitHub Desktop.
A function to check if mobile device or browser is mobile size.
// if mobile function
function isMobile(){
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
return true;
} else if ($(window).width() < 991) {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment