gerd
6/4/2018 - 11:25 PM

equalheightdivs

var maxHeight = 0;

$(".card").each(function(){
   if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
});

$(".card").height(maxHeight);