Skip to content

Instantly share code, notes, and snippets.

@jamiees2
Created March 9, 2013 22:09
Show Gist options
  • Save jamiees2/5125967 to your computer and use it in GitHub Desktop.
Save jamiees2/5125967 to your computer and use it in GitHub Desktop.
A simple media query snippet for enquire.js
enquire.register("screen and (max-width:803px)",{
match: function(){
//code to do when the media query matches
},
unmatch: function(){
//code do do when the media query does not match
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment