var heights = $(".content-color-box-wrapper").map(function () { return $(this).height(); }).get(); maxHeight = 500 Math.max.apply(null, heights); function changeHeight() { $(".content-color-box-wrapper").css("height", maxHeight); } changeHeight();
Register Now