Skip to content

Instantly share code, notes, and snippets.

@oliverll1
Last active July 22, 2019 18:16
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 oliverll1/14200bfbcf295b5f2db0ce10bda962c1 to your computer and use it in GitHub Desktop.
Save oliverll1/14200bfbcf295b5f2db0ce10bda962c1 to your computer and use it in GitHub Desktop.
Handle Media queries in Javascript
const isMobile = window.matchMedia("only screen and (max-width: 768px)").matches;
if (isMobile) {
console.log("You are on mobile!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment