| jquery Programming Glossary: bodyheightHow to change height div on window resize? http://stackoverflow.com/questions/2758651/how-to-change-height-div-on-window-resize   I have a div on my website that should be the height of the window. This is what i got document .ready function var bodyheight document .height #sidebar .height bodyheight However it does not automatically change when the window is resized Does any.. the height of the window. This is what i got document .ready function var bodyheight document .height #sidebar .height bodyheight However it does not automatically change when the window is resized Does any body know how to fix this Thanks  jquery window.. height   share improve this question   You also need to do that in resize event try this document .ready function var bodyheight document .height #sidebar .height bodyheight for the window resize window .resize function var bodyheight document .height.. 
 |