출처 : http://blog.paran.com/zipnagi/13919165
Window size and scrolling
var myWidth = 0, myHeight = 0;
var heightchae
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 compatible
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
}
'Programming > Java Script' 카테고리의 다른 글
[스크랩] 기타 유틸 함수 (0) | 2010.03.26 |
---|---|
[스크랩] 팝업 관련 함수 (0) | 2010.03.26 |
[스크랩] 유용한 함수들 (0) | 2010.03.26 |
항상따라다니는 Div창 & 자동 창 크기 설정 스크립트 (0) | 2010.03.23 |
Window 객체 속성 (0) | 2010.03.23 |
Asp.Net 에서 페이지 따라 댕기기 (0) | 2010.02.24 |
정규화 표현 2 (0) | 2010.02.19 |
정규식 표현 (0) | 2010.02.18 |
HTML 페이지 주소 인코딩/디코딩 하는 방법 (0) | 2010.02.18 |
asp.net TextBox 컨트롤 javascript에서 ID 불러오기 (0) | 2010.02.18 |