Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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");

});
share|improve this question

3 Answers

$("div#sidebar").css("height","$sidebar");

should be

$("div#sidebar").css("height",$sidebar)

OR simple

 $("div#sidebar").height($("#content").height())
share|improve this answer

You can simplify your code to this:

$(document).ready(function() {
  $("#sidebar").height($("#content").height());
});
share|improve this answer

You are doing this wrong.

$("div#sidebar").css("height","$sidebar");

$("div#sidebar").css("height",$sidebar);

Additionally to include the margin and padding you should pass argurment true to height like

$("div#content").height(true);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.