body.scrollTop
body.scrollLeft
IE에서 항상 0을 리턴하는 문제

==>
document.documentElement.scrollTop
document.documentElement.scrollLeft
사용



cf)
if (document.documentElement && !document.documentElement.scrollTop)
  // IE6 +4.01 but no scrolling going on
else if (document.documentElement && document.documentElement.scrollTop)
  // IE6 +4.01 and user has scrolled
else if (document.body && document.body.scrollTop)
  // IE5 or DTD 3.2
Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2008-12-10 17:32:29
Processing time 0.0055 sec