I'm using jQuery.scrollTop() to get the position of a scroll bar. I'm trying to create an animation which will indicate to a user where they are in a list of content. It's a list of names, and I want to have a big "Q" hovering over the list as the user scrolls over the Q's, etc.
It seems that scrollTop() gives accurate information only after I've stopped moving the scrollbar. It doesn't reflect the position while I'm actually moving the scrollbar.
Is domElement.scrollTop reliable across browsers? Why doesn't jquery.scrollTop update while the scrollbar is moving?