Skip to content

Instantly share code, notes, and snippets.

@ShuvoHabib
Created August 30, 2018 11:52
Show Gist options
  • Save ShuvoHabib/dea741f5f38f9679070e676240075f24 to your computer and use it in GitHub Desktop.
Save ShuvoHabib/dea741f5f38f9679070e676240075f24 to your computer and use it in GitHub Desktop.
Window Resize JS
function screenClass() {
if($(window).innerWidth() > 767) {
}
}
screenClass();
$(window).bind('resize',function(){
screenClass();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment