Skip to content

Instantly share code, notes, and snippets.

@sugarshin
Created April 14, 2014 10:30
Show Gist options
  • Save sugarshin/10635973 to your computer and use it in GitHub Desktop.
Save sugarshin/10635973 to your computer and use it in GitHub Desktop.
window.matchMedia
var MM = window.matchMedia("(max-width: 400px)"),
docbody = document.body;
function doMediaCheck () {
if (MM.matches) {
docbody.innerHTML = 'less than 400';
docbody.className = 'orange';
} else {
docbody.innerHTML = 'more than 400';
docbody.className = '';
}
}
window.onresize = function () {
doMediaCheck();
};
doMediaCheck();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment