Hi I want to apply min-height to ".wide-content"
min-height
of .wide-content = height of right content - "274px"
var leftHeight = $(".wide.content").height();
var rightHeight = $("#right_column").height();
alert (leftHeight); alert (rightHeight);
if (leftHeight < rightHeight) {
$(".wide.content").css('minHeight' 'leftHeight - 274');
}
Thanks in Advance