1var maxHeight = Math.max.apply(null, $("div.panel").map(function ()
2{
3 return $(this).height();
4}).get());
5
6//or
7var heights = $("div.panel").map(function ()
8 {
9 return $(this).height();
10 }).get();
11
12maxHeight = Math.max.apply(null, heights);
13