document 의 높이값 가져오기.
var B = document.body;
var H = document.documentElement;
var height;
if (typeof document.height !== 'undefined') {
height = document.height; // For webkit browsers
} else {
height = Math.max( B.scrollHeight, B.offsetHeight, H.clientHeight, H.scrollHeight, H.offsetHeight );
}
'JavaScript' 카테고리의 다른 글
[Javascript] Prototype 공부. (0) | 2014.06.13 |
---|---|
[JavaScript] javascript 클립보드에 문자열 복사 (0) | 2014.02.10 |
[JavaScript] 아이디 저장. (0) | 2014.01.22 |
[JavaScript] log찍기 (0) | 2013.11.08 |
[JavaScript] Tree 표현(CSS, jQuery) (0) | 2013.11.08 |