lolitaloco

Make #wrapper min-height equal to browser window height

Oct 21st, 2011
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.13 KB | None | 0 0
  1. $(document).ready(function()    {
  2.     var docHeight = $(document).height();
  3.     $('#wrapper').css('min-height', docHeight);
  4. });
Add Comment
Please, Sign In to add comment