Skip to content

Instantly share code, notes, and snippets.

@yagopv
Created May 24, 2013 07:37
Show Gist options
  • Save yagopv/5641895 to your computer and use it in GitHub Desktop.
Save yagopv/5641895 to your computer and use it in GitHub Desktop.
Equal height boxes
$boxes = $(view).find(".about-content");
maxHeight = Math.max.apply(
Math, $boxes.map(function() {
return $(this).height();
}).get());
$boxes.height(maxHeight);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment