Skip to content

Instantly share code, notes, and snippets.

@ss81
Created February 19, 2014 18:25
Show Gist options
  • Save ss81/9098276 to your computer and use it in GitHub Desktop.
Save ss81/9098276 to your computer and use it in GitHub Desktop.
Drupal.equalHeight
Drupal.equalHeight = function(group) {
if ($(group).length > 0) {
var tallest = 0, thisHeight = 0;
$(group).each(function() {
thisHeight = $(this).height();
if (thisHeight > tallest) {
tallest = thisHeight;
}
});
$(group).height(tallest);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment