brianwilkins
1/22/2019 - 11:26 PM

equalizeHeights

// @desc: jQuery plugin to make elements equal height
(function($) {
  $.fn.equalizeHeight = function() {
    var elementHeight = 0;

    this.each(function(){
      if ($(this).height() > elementHeight) {
        elementHeight = $(this).height();
      }
    });

    return this.height(elementHeight);
  };

}(jQuery));