Forum Moderators: not2easy
--------------------------------
|Header div....................|
| blah blah blah...............|
|..............................|
|------------------------------|
|content div...................|
| more blah blah blah..........|
|..............................|
|..............................|
|..............................|
|..............................|
--------------------------------
function js_SetDivHeight() {
var divTop, windowHeight, divHeight;
divTop = jQuery("#detaildiv").offset().top
windowHeight = jQuery(window).height();
divHeight = ((windowHeight - divTop) - 50) + "px";
jQuery("#detaildiv").css({"height":divHeight});
}
jQuery(window).resize(js_SetDivHeight);