Return to Snippet

Revision: 22263
at January 7, 2010 10:00 by eivind


Initial Code
function equalHeight(group) {
  tallest = 0;
  group.each(function() {
    thisHeight = $(this).height();
    if(thisHeight > tallest) {
      tallest = thisHeight;
    }
  });
  group.height(tallest);
}

Initial URL


Initial Description


Initial Title
Jquery equalHeights

Initial Tags
textmate, jquery

Initial Language
Other