Return to Snippet

Revision: 19565
at October 26, 2009 04:28 by cesgra


Initial Code
var maxHeight = 0;

$("div").each(function(){
   if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
});

$("div").height(maxHeight);

Initial URL
http://css-tricks.com/snippets/jquery/equalize-heights-of-divs/

Initial Description


Initial Title
Equalize Heights of Divs

Initial Tags


Initial Language
jQuery