Skip to content

Instantly share code, notes, and snippets.

@deanohyeah
Created August 22, 2013 23:01
Show Gist options
  • Save deanohyeah/6313830 to your computer and use it in GitHub Desktop.
Save deanohyeah/6313830 to your computer and use it in GitHub Desktop.
js mediaquery
<script type="text/javascript">
var mediaQuery;
//checks for browser support ie < 10 no support
if(typeof window.matchMedia == 'function'){
mediaQuery = window.matchMedia("(max-width: 767px)").matches;
}else{
mediaQuery = false;
}
if (!mediaQuery) {
//runs mediaquery rules
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment