February 07, 2018
Use the following snippet to identify the tallest div in the sequence and force all the same level divs to match height with it.
var maxheight = 0; jQuery('.element').each(function () { maxheight = (jQuery(this).height() > maxheight ? jQuery(this).height() : maxheight); }); jQuery('.element').height(maxheight);
Sourced here.