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.

I'm using this jquery script for extending a child DIV 100%. It works fine, but the DIV is extending beyond the browser window so I must scroll down always. Is it possible to change the 100% height to be related to a parent DIV rathe than the document?

$(document).ready(function () {
    $("#stretch").animate({ height: $(document).height() }, 500 );
});
share|improve this question

2 Answers

up vote 0 down vote accepted

Sure it is:

For direct parent:

$(document).ready(function () {
    var $stretch = $("#stretch");

    $stretch.animate({ height: $stretch.parent().height() }, 500 );
});

http://jsfiddle.net/RRqr4/

If it's not the direct parent, you can substitute closest for parent.

share|improve this answer
I tried this and no bueno. – Erik Apr 25 '12 at 17:34
Seems like 'document' is the only one that works. – Erik Apr 25 '12 at 17:36
Perhaps you could elaborate on "no bueno"? This does work in general jsfiddle.net/RRqr4 if it does not work for you there is something else going on. – James Montagne Apr 25 '12 at 17:38
My parents are: #body_wrap {width:100%;min-height: 100%;height: auto !important;height: 100%;margin: 0 auto -145px;} #frame_body {width:771px;margin: 0 auto;} – Erik Apr 25 '12 at 17:38
I updated it with my code and I can;t figure out the bug: jsfiddle.net/RRqr4/1 – Erik Apr 25 '12 at 17:41
show 2 more comments

try

$(document).ready(function () {
    var $stretch = $("#stretch");
    $('#stretch').animate({ height: $stretch.parent().height() }, 500 );
});

or if its not the imeditate parent:

$(document).ready(function () {
    var $stretch = $("#stretch");
    $('#stretch').animate({ height: $stretch.closest('parent-selector').height() }, 500 );
});
share|improve this answer
Lost the DIV - does not appear. – Erik Apr 25 '12 at 17:31
This actually won't work because this in this context is not the element. – James Montagne Apr 25 '12 at 17:31
Gave it a try. No bueno. – Erik Apr 25 '12 at 17:32
Sorry Erik, James is right - edited – infensus Apr 25 '12 at 17:32
Seems like 'document' is the only one that works. – Erik Apr 25 '12 at 17:37
show 3 more comments

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.