Return to Snippet

Revision: 52402
at October 21, 2011 22:23 by griffpup


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
equal-height-columns

Initial Tags
css, textmate, jquery

Initial Language
Other