jQuery map을 이용한 max값(width,height) 구하기
map, apply 메소드 활용 javascript var maxHeight = Math.max.apply(null, $("div.panel").map(function (){ return $(this).height(); }).get()); var heights = $("div.panel").map(function (){ return $(this).height(); }).get(), maxHeight = Math.max.apply(null, heights);