Skip to content

Instantly share code, notes, and snippets.

@kolyasademetrio
Created September 16, 2016 06:40
Show Gist options
  • Save kolyasademetrio/db5a83932aa4611bc78b5ec1b6809a8f to your computer and use it in GitHub Desktop.
Save kolyasademetrio/db5a83932aa4611bc78b5ec1b6809a8f to your computer and use it in GitHub Desktop.
jQuery: matchMedia
$(window).resize(function(){
if ( window.matchMedia("screen and (max-width: 768px)").matches ) {
} else {
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment