Skip to content

Instantly share code, notes, and snippets.

@haroldao
Created May 29, 2021 14:03
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haroldao/6041c3ec790b4019d9cd9490c6642cc6 to your computer and use it in GitHub Desktop.
Save haroldao/6041c3ec790b4019d9cd9490c6642cc6 to your computer and use it in GitHub Desktop.
// check device
let isMobile = false;
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
isMobile = true;
document.body.classList.add('is-mobile');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment