Skip to content

Instantly share code, notes, and snippets.

@nonsponsored
Created November 10, 2017 17:09
Show Gist options
  • Select an option

  • Save nonsponsored/bb6c6d3d5b05b722a97916a83ee57870 to your computer and use it in GitHub Desktop.

Select an option

Save nonsponsored/bb6c6d3d5b05b722a97916a83ee57870 to your computer and use it in GitHub Desktop.
Function: matchMedia
var $minWidthQuery = window.matchMedia('(min-width: 768px)');
function widthChange($minWidthQuery) {
if ($minWidthQuery.matches ) {
// If match, do something
}
}
$minWidthQuery.addListener(widthChange);
widthChange($minWidthQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment