Skip to content

Instantly share code, notes, and snippets.

@ddpunk
Created May 22, 2014 12:43
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 ddpunk/1c9076b8996db63a1cea to your computer and use it in GitHub Desktop.
Save ddpunk/1c9076b8996db63a1cea to your computer and use it in GitHub Desktop.
// Equal profiles
$(document).ready(function() {
var maxHeight = Math.max.apply(null, $("#team .profile").map(function ()
{
return $(this).height();
}).get());
$("#team .profile").height(maxHeight);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment