I would like to write a java script that allows me to see the table headings of each column when at least one column of the table is visible. So I want an "excel-like" effect, when the user scrolls down a big table.
So I have to be able to check if an element is at the screen of the user at the moment. When he scrolls down long enough, the element "disappears" from his screen. How do I check that?
The only function I found was goog.style.isElementShown, but thats not what I want. In jQuery it seems to be .scrollTop().
Try goog.style.getVisibleRectForElement.
If you look at jQuery source code, you will see that .scrollTop() just unify access to element/window scrollTop https://github.com/jquery/jquery/blob/master/src/offset.js#L264 For elements, you can just use scrollTop.
But scrollTop is probably not what you are looking for.