Skip to content

Instantly share code, notes, and snippets.

@ryanburgess
Created December 19, 2013 17:03
Show Gist options
  • Select an option

  • Save ryanburgess/8042651 to your computer and use it in GitHub Desktop.

Select an option

Save ryanburgess/8042651 to your computer and use it in GitHub Desktop.
A function to check browser window size when the browser viewport changes.
function checkWindowSize() {
var windowWidth = $(window).width();
var windowHeight = $(window).height();
}
$(window).bind("resize", checkWindowSize);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment