offsetTop / offsetLeft
script 2008. 10. 1. 13:59function getRealOffsetTop(el) {
return el ? el.offsetTop + getRealOffsetTop(el.offsetParent) : 0;
}
return el ? el.offsetTop + getRealOffsetTop(el.offsetParent) : 0;
}
function getRealOffsetLeft(el) {
return el ? el.offsetLeft + getRealOffsetLeft(el.offsetParent) : 0;
}
return el ? el.offsetLeft + getRealOffsetLeft(el.offsetParent) : 0;
}
'script' 카테고리의 다른 글
[Link] Ajax를 마스터 하자 ! (0) | 2009.01.14 |
---|---|
javascript 날짜 계산 (1) | 2009.01.12 |
escapeUrl (0) | 2008.12.07 |
IE7 overflow:hidden bug(?) (3) | 2008.11.21 |
xhtml dtd (0) | 2008.10.04 |
[Link] 고급 JavaScript 작성하기 (0) | 2008.09.25 |
window.open() 팝업 (0) | 2008.09.23 |
SyntaxHighlighter(Code google) Supported languages (0) | 2008.09.11 |
textarea byte check (0) | 2008.09.10 |
javascript trim (4) | 2008.08.27 |