var max = -1; $("li").each(function() { var h = $(this).height(); max = h > max ? h : max; }); alert(max);