feh1ks
9/18/2017 - 6:38 AM

jquery set height of tallest item

var maxHeight = 0;
$(".row-flex-grid .filter-item").each(function() {
  if ($(this).outerHeight() > maxHeight) {
    maxHeight = $(this).outerHeight();
  }
}).height(maxHeight);