Click to See Complete Forum and Search --> : New IE bug


phpnovice
05-22-2005, 09:46 PM
I just noticed that the following two IE properties have stopped reflecting the current scroll position of the displayed document:

document.body.scrollLeft
document.body.scrollTop

Also, what is the current standard for retrieving the current scroll position of the displayed document? MSDN claims there is no public standard for the above properties -- thus, I presume something else must be the standard but I can't find any information on this except going all the way back to JS 1.3 days with NS4.7, etc.

Fang
05-23-2005, 01:40 AM
Scrolling offset (http://www.quirksmode.org/viewport/compatibility.html)

phpnovice
05-23-2005, 08:14 AM
Thanks.