Skip to content

Instantly share code, notes, and snippets.

@dara
Created June 25, 2011 12:17
Show Gist options
  • Save dara/1046420 to your computer and use it in GitHub Desktop.
Save dara/1046420 to your computer and use it in GitHub Desktop.
Autosize Wrapper
var windowHeight;
$('#wrapper').css('height', $(window).height());
$(window).resize(function() {
windowHeight = $(window).height();
$('#wrapper').css('height', windowHeight);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment