Skip to content

Instantly share code, notes, and snippets.

@whistlerbrad
Created June 20, 2017 21:00
Show Gist options
  • Select an option

  • Save whistlerbrad/06055f96903d84f3682a7eeaab9c6091 to your computer and use it in GitHub Desktop.

Select an option

Save whistlerbrad/06055f96903d84f3682a7eeaab9c6091 to your computer and use it in GitHub Desktop.
Equal Height
$('.tab-content').css('min-height', function() {
var blockHeights = $('.tab-content').map(function() {
return $(this).height();
}).get();
var tallest = Math.max.apply(null, blockHeights);
return (tallest + 30);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment