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);
'Code Lab' 카테고리의 다른 글
심플 회원가입 양식 체크 (0) | 2015.02.19 |
---|---|
폼 유효성 검사(Form validate check) - 간단 자바스크립트 (1) | 2015.02.19 |
switch case문 기초 사용해 보기 (0) | 2015.02.11 |
ImgReplace 함수 코드 (0) | 2015.02.11 |
모바일 주소창 없애기 (1) | 2015.02.11 |