Skip to content

Instantly share code, notes, and snippets.

@addisonhall
Last active August 29, 2015 14:22
Show Gist options
  • Select an option

  • Save addisonhall/a5bbefdf24cfa7f3fffe to your computer and use it in GitHub Desktop.

Select an option

Save addisonhall/a5bbefdf24cfa7f3fffe to your computer and use it in GitHub Desktop.
Get screen size (width and height)
// ----------------------------------------------------
// 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