Hi, I know this is a popular topic on here, (I have previously asked about it here), but I can’t work this out… I have two rows on a page; each row has three columns and I need the columns in each row to be the same height (e.g. the height of the tallest column in their row).
Using the following JS, provided by one of your team on the thread referenced above, I am able to get the first row on the page to present correctly. However, the second row on the page that uses the .equalize class is not working. Please can you help?
(function($){
$(window).bind('ready load resize', function(){
mobile = $(window).width();
if ( mobile > 767 ){
$('.equalize').each( function() {
var max = 0
$(this).find(".x-column").each(function(index, el) {
if( $(this).height() > max ){
max = $(this).outerHeight();
}
});
$(this).find(".x-column").css('min-height', max);
} );
} else {
$('.equalize .x-column').css('min-height' , 0 );
}
});
})(jQuery);
I have included a link to the page and log-in credentials below.