How do I get the sidebar to move up
问题 I have this page and I want the sidebar to slide down with the user and it works well but if you are on a small screen like 1024 * 768 you will not see the bottom. Here is some of the code I used to make the sidebar work. Any suggestions on how I can change this behavior. $(window).scroll(function(){ sidebar_position(); }); $(window).resize(function(){ sidebar_position(); }); function sidebar_position(){ var w_width = ($(window).width() -1000) /2; $('#sidebar').css('left', w_width); var