1

Is their any javascript code to get the scroll height. I mean the scroll bar is how far from the top. Please help me thanks in advance

Marcel Korpel
  • 21,536
  • 6
  • 60
  • 80
Warrior
  • 5,168
  • 12
  • 60
  • 87
  • Answer is already here: http://stackoverflow.com/questions/871399/cross-browser-method-for-detecting-the-scrolltop-of-the-browser-window – Marco Demaio Aug 14 '10 at 14:56

2 Answers2

1
document.documentElement.scrollTop

it will work in both IE and Firefox

sra
  • 23,820
  • 7
  • 55
  • 89
Warrior
  • 5,168
  • 12
  • 60
  • 87
0

use the scrollTop attribute. for example, the distance of the body's scrollbar from the top can be accessed at:

document.body.scrollTop;
tcooc
  • 20,629
  • 3
  • 39
  • 57