Skip to content

Instantly share code, notes, and snippets.

@cgkio
Created September 18, 2013 02:26
Show Gist options
  • Save cgkio/6603671 to your computer and use it in GitHub Desktop.
Save cgkio/6603671 to your computer and use it in GitHub Desktop.
Set div height to full screen
$(function() {
var window_height = $(window).height(),
content_height = window_height - 200;
$('#div').height(content_height);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment