Skip to content

Instantly share code, notes, and snippets.

@IgorGavrilenko
Last active February 13, 2024 16:45
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 IgorGavrilenko/8e0ad8f02bcb0c2f45c0b5359b404c0f to your computer and use it in GitHub Desktop.
Save IgorGavrilenko/8e0ad8f02bcb0c2f45c0b5359b404c0f to your computer and use it in GitHub Desktop.
media jquery
const query = window.matchMedia('(min-width: 1200px)');
query.onchange = (evt) => {
if(query.matches) {
}
};
query.onchange();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment