Seokky
9/19/2017 - 6:53 PM

Stretch without flexbox with JavaScript (for float-layout)

Stretch without flexbox with JavaScript (for float-layout)

var max_height = 0;
$("div.col").each(function(){
if ($(this).height() > max_height) { max_height = $(this).height(); }
});
$("div.col").height(max_height);