Skip to content

Instantly share code, notes, and snippets.

@HasStacey
Created July 7, 2014 23:40
Show Gist options
  • Select an option

  • Save HasStacey/87e74c8eead8961607c8 to your computer and use it in GitHub Desktop.

Select an option

Save HasStacey/87e74c8eead8961607c8 to your computer and use it in GitHub Desktop.
Set the heights of all card tiles equal to the tallest
var tileTeamMemberHeight = 0;
$('.tile-teamMember').each(function(){
if($(this).height() > tileTeamMemberHeight ) {
tileTeamMemberHeight = $(this).height();
}
});
$('.tile-teamMember').height(tileTeamMemberHeight);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment