Is there an efficient way to tell if a DOM element (in an HTML document) is currently visible (appears in the viewport)?
(The question regards Firefox)
|
1
|
|||||||
|
|
|
This will check if the element is entirely visible in the current viewport:
You could modify this simply to determine if any part of the element is visible in the viewport:
|
||||||
|
|
|
Check the style.display and style.visibility properties of the DOM Element. |
||
|
|
|
|
Depends what you mean by visible. If you mean is it currently shown on the page, given the scroll position, you can calculate it based on the elements y offset and the current scroll position. |
||
|
|