Skip to content

Instantly share code, notes, and snippets.

@bondarolik
Created August 30, 2012 00:17
Show Gist options
  • Save bondarolik/3520855 to your computer and use it in GitHub Desktop.
Save bondarolik/3520855 to your computer and use it in GitHub Desktop.
Set height of div based on the highest div in columns
$(document).ready(function() {
var sidebarHeight = $("#sidebar").height();
var contentHeight = $("#workarea").height();
if (contentHeight > sidebarHeight) {
$("#sidebar").height(contentHeight).slideDown("slow");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment