vote up 1 vote down star

See title. Additionally, how can I tell if a given child element is only partially or else wholly out of view (that is, not within the currently scrolled portion) of my 'overflow: auto;' parent element?

flag

2 Answers

vote up 0 vote down check

Well, I found this for scrolling to elements in the page, which is related. Would using some maths with .scrollTop and .offsetTop allow me to do something like what I'm looking for?

Edit: Apparently yes.

link|flag
vote up 1 vote down

There is no standard way to detect if an element is fully, partially, or not in view within an overflow element. If you have a simple layout - you can do the math yourself using the Prototype Position APIs: http://www.prototypejs.org/api/position

Take a look at the 'within' method which may work for you: http://www.prototypejs.org/api/position/within

link|flag
1  
Says it's depreciated, though. – Daddy Warbox Jun 29 at 6:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.