Skip to content

Instantly share code, notes, and snippets.

jQuery(document).ready(function($){
var sidebarHeight = $("#sidebar").height() - 50;
var bodyHeight = $("#content-sidebar-wrap").height();
if (bodyHeight > sidebarHeight) {
$("#sidebar").css( 'min-height', bodyHeight + 50 );
$("#content-sidebar-wrap").css( 'min-height', bodyHeight + 50 );
};
});