Skip to content

Instantly share code, notes, and snippets.

@amaxwell01
Created November 26, 2012 07:35
Show Gist options
  • Select an option

  • Save amaxwell01/4147043 to your computer and use it in GitHub Desktop.

Select an option

Save amaxwell01/4147043 to your computer and use it in GitHub Desktop.
Matching a sidebars height to the content
var correctSidebarBorderHeight = function() {
var sidebar = $('.sidebar');
var sidebarHeight = sidebar.height();
var content = $('.body_content');
var contentHeight = content.height();
if( sidebarHeight < contentHeight ) {
sidebar.css('height', contentHeight);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment