Return to Snippet

Revision: 52788
at November 1, 2011 15:09 by jackkeller


Initial Code
var maxHeight = 0;

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

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

Initial URL


Initial Description


Initial Title
Equalize Heights of Divs

Initial Tags
jquery

Initial Language
JavaScript