tkm-ymmt
11/8/2014 - 3:45 PM

autoheightのクラス ページ内複数用に

autoheightのクラス ページ内複数用に

function AutoHeight( $el ){
  this.init = function($el){
    var heights = [];
    $el.each(function(i){
      heights[i] = $(this).height();
    });
    $el.each(function(i){
      $(this).height(Math.max.apply(null, heights));
    });
  };
  this.init($el);
}