Skip to content

Instantly share code, notes, and snippets.

@muskie9
Created November 12, 2015 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muskie9/0b181685b342d45962c2 to your computer and use it in GitHub Desktop.
Save muskie9/0b181685b342d45962c2 to your computer and use it in GitHub Desktop.
var $mycolumns = $('.casestudies .study');
var height = 0;
$mycolumns.each(function () {
if ($(this).height() > height) {
height = $(this).height();
}
});
$mycolumns.height(height);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment