vote up 1 vote down star

The coding is done using VS2008 There are two divs in my page namely "dvLeftContent" and "dvRightContent". I cannot statically set the height of the pages since "dvRightContent" have variable heights on various pages (Master Pages are used here) Is there a client side function(javascript or jquery) that takes the height of the right div and assigns it to left div?

flag

5 Answers

vote up 0 vote down check

Using jQuery:

$("#dvRightContent").bind("resize", function(){
    $("#dvLeftContent").css('height', $("#dvRightContent").css('height')); 
});
link|flag
vote up 0 vote down

Hi micahwittman, yeah i know. I posted it for any future reference. Thanks pal

link|flag
vote up 0 vote down

Hi mlarsen, Will this plugin works if the div changes(using js without a postback) after the page is loaded?

link|flag
I cannot see why it wouldn't. You just call jQuery.Equalise("#col1", "#col2") again after the content has changed. – mlarsen Oct 23 '08 at 18:34
vote up 0 vote down

There is also a jQuery plugin which does the job for you: Equalize

It handles both the scenario where rightcol is larger then leftcol or where leftcol is larger than rightcol. It also allows you to specify which element inside either leftcol or rightcol should get the space added.

link|flag
vote up 0 vote down

Thanks micahwittman. Some minor changes

   $("#dvRightContent").resize(function(){
        $("#dvLeftContent").css("height", ($("#dvRightContent").attr("offsetHeight") - 250 ) +"px");
    });

Its because height will give only "auto" in this case as its set like that

link|flag
Interesting. You're welcome, btw. Also, just did a quick edit to fix typo on my username. – micahwittman Oct 23 '08 at 15:01

Your Answer

Get an OpenID
or

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