Skip to content

Instantly share code, notes, and snippets.

@jbd91
Created September 11, 2019 16:32
Show Gist options
  • Save jbd91/3b48c82cbfca9a5d66aa98850e03e0a1 to your computer and use it in GitHub Desktop.
Save jbd91/3b48c82cbfca9a5d66aa98850e03e0a1 to your computer and use it in GitHub Desktop.
Media Query JS
var mq = window.matchMedia( "(max-width: 570px)" );
if (mq.matches) {
// window width is at less than 570px
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment