Untitled
public javascript v1 · immutable$(document).ready(function() { page_height();});$(window).resize(function() { page_height();});function page_height() { //get the #page-container height so we can adjust the height accordingly var document_height = $("#page-container").height(); //set the height of #meeting_schedule $("#sidebar").height(document_height);// alert("container height: " + document_height + ", sidebar height" + $("#sidebar").height()); }