Try
$('.equal_height_1').each(function() {
if($(this).height() > highestBox)
highestBox = $(this).height();
});
$('.equal_height_1').css("height",highestBox);
solved Code to make divs to have equal height? [duplicate]
Try
$('.equal_height_1').each(function() {
if($(this).height() > highestBox)
highestBox = $(this).height();
});
$('.equal_height_1').css("height",highestBox);
solved Code to make divs to have equal height? [duplicate]