I have this code:
var maxHeight = 0;
$('div.height').each(function() { maxHeight = Math.max(maxHeight, $(this).height()); }).height(maxHeight);
This code calculate each box even in length. But I want each box calculate separately in length. How can i do this?
My HTML
<div class="height">
<div class="overlay height"></div>
Content
</div>
<div class="height">
<div class="overlay height"></div>
Content
</div>