Zo4inec
2/9/2017 - 4:52 PM

Выровнять высоту блоков

Выровнять высоту блоков

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