Skip to content

Instantly share code, notes, and snippets.

@anova
Created February 23, 2022 10:58
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 anova/5ffc64f2bb3fc9d79bb3c1f960a598f1 to your computer and use it in GitHub Desktop.
Save anova/5ffc64f2bb3fc9d79bb3c1f960a598f1 to your computer and use it in GitHub Desktop.
Trigger events by breakpoint change.
const breakpoint_lg = window.matchMedia('(min-width: 992px)');
breakpoint_lg.addEventListener('change', () => {
if(breakpoint_lg.matches) {
console.log('lg');
return;
}
console.log('not lg');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment