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