How to change height div on window resize?

后端 未结 6 2087
醉话见心
醉话见心 2020-11-30 01:15

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).h         


        
6条回答
  •  悲哀的现实
    2020-11-30 01:41

    $(document).ready(function() 
    {
    
         $(window).on("resize",function() {
    
              var bodyheight = $(document).height();
    
              $("#sidebar").height(bodyheight);
         });
    
    });
    

提交回复
热议问题