Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created December 26, 2012 17:20
Show Gist options
  • Save jlittlejohn/4381605 to your computer and use it in GitHub Desktop.
Save jlittlejohn/4381605 to your computer and use it in GitHub Desktop.
JS: Make Div Height Equal to Window
var height = $(window).height() - 25;
$('#sidebar').height(height - 170);
window.onresize = function(event) {
var height = $(window).height() - 25;
$('#sidebar').height(height - 170);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment