Skip to content

Instantly share code, notes, and snippets.

@robertmagnusson
Created June 30, 2014 13:57
Show Gist options
  • Save robertmagnusson/ff7f0fe471b502b47728 to your computer and use it in GitHub Desktop.
Save robertmagnusson/ff7f0fe471b502b47728 to your computer and use it in GitHub Desktop.
Align height on several objects.
// Equal height
var $box = $('.align-height');
var boxHeight = 0;
// Equal heights for the sub menus.
$box.each(function() {
boxHeight = Math.max($(this).height(), boxHeight);
});
$box.height(boxHeight);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment