Skip to content

Instantly share code, notes, and snippets.

@ideefixe
Last active December 11, 2015 10:38
Show Gist options
  • Save ideefixe/4588383 to your computer and use it in GitHub Desktop.
Save ideefixe/4588383 to your computer and use it in GitHub Desktop.
Jquery media query
$(window).resize(function() {
var width = $(window).width();
if (width < 960) {
// Do Something
}
else {
//Do Something Else
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment