Skip to content

Instantly share code, notes, and snippets.

@stenrdj
Last active October 19, 2017 14:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stenrdj/0a8c96d9ca75f96c48d49e0787ac1db6 to your computer and use it in GitHub Desktop.
Save stenrdj/0a8c96d9ca75f96c48d49e0787ac1db6 to your computer and use it in GitHub Desktop.
Responsive code for jquery
// On resizing window on desktop
$(window).bind('resize',function(){
if($(window).innerWidth() < 450) {
// your code here for responsive
}else{
//your code here for desktop
}
});
//end
// Checking if its on desktop and make
if (window.matchMedia("(max-width: 450px)").matches) {
// your code here for responsive
}else{
//your code here for desktop
}
//end check
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment