var maxHeight = 0; $('.list li').each(function() { maxHeight = Math.max(maxHeight, this.clientHeight); }); alert(maxHeight);