up vote 1 down vote favorite
share [g+] share [fb]

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?

link|improve this question

feedback

2 Answers

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|improve this answer
1  
Says it's depreciated, though. – Daddy Warbox Jun 29 '09 at 6:19
feedback
up vote 0 down vote accepted

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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