All pastes #2045141 Raw Edit

Untitled

public javascript v1 · immutable
#2045141 ·published 2011-04-11 14:52 UTC
rendered paste body
$(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());	}