Last active
August 29, 2015 14:22
-
-
Save addisonhall/a5bbefdf24cfa7f3fffe to your computer and use it in GitHub Desktop.
Get screen size (width and height)
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
| // ---------------------------------------------------- | |
| // Check screen size | |
| // ---------------------------------------------------- | |
| var windowWidth = $(window).width(); | |
| var windowHieght = $(window).height(); | |
| window.addEventListener("resize", function () { | |
| windowWidth = $(window).width(); | |
| windowHeight = $(window).height(); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment