var max = -1;
$(".ulClassName li").each(function() {
var h = $(this).height();
max = h > max ? h : max;
$(this).css({'min-height': max});
});
alert(max);
$(".ulClassName li").each(function() {
var h = $(this).height();
max = h > max ? h : max;
$(this).css({'min-height': max});
});
alert(max);
or
ReplyDeletevar max = Math.max.apply(this,
$(".ulClassName li").map(
function() { return $(this).attr('height') }
));