Created
August 30, 2018 11:52
-
-
Save ShuvoHabib/dea741f5f38f9679070e676240075f24 to your computer and use it in GitHub Desktop.
Window Resize JS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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