0

var heights = jQuery(".all-projects .this-post").map(function ()
    {
        return jQuery(this).height();
    }).get();
 maxHeight = Math.max.apply(null, heights);
//jQuery('.all-projects .this-post').css('min-height', maxHeight+'px')

Jagdish Sarma Asked question September 3, 2021
Add a Comment