Skip to content

Instantly share code, notes, and snippets.

@robertmagnusson
Created January 28, 2014 08:55
Show Gist options
  • Save robertmagnusson/8664279 to your computer and use it in GitHub Desktop.
Save robertmagnusson/8664279 to your computer and use it in GitHub Desktop.
Equal heights
function equalHeights() {
if ($('#sidebar-second').height() < $('#content').height()){
$('#sidebar-second').height($('#content').height());
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment