height adjust

by shuja uddin

HTML

<div id="contentArea">
    <br>
    <div id="panelbar">

CSS

#contentArea{float:left;height:80px;width:100px;border:1px solid green;background:#eee}
#panelbar{position: absolute;
right: 0;width:100px;border:1px solid yellow;background:#eee}

JavaScript

var contentAreaHeight = $("#contentArea").height() ;
                $("#panelbar").css("min-height",contentAreaHeight);