So basically I want my sidebar to be the same height as my main content area... This is the very simple code i wrote out and im just not sure why its not working, "px" doesnt seem to be appending to the string...
$(document).ready(function(){
var $height = $("div#content").height();
var $sidebar = $height + "px";
$("div#sidebar").css("height","$sidebar");
});