vote up 5 vote down star
1

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)

flag
Clarification: Visible, as in within the currently displayed rectangle. Visible, as in not hidden or display: none? Visible, as in not behind something else in the Z-order? – Adam Wright Sep 23 '08 at 21:31
as in within the currently displayed rectangle. Thanks. Rephrased. – Itamar Benzaken Sep 23 '08 at 21:40
Could you update the title also? – EoghanM Dec 2 '08 at 23:48

3 Answers

vote up 9 vote down check

This will check if the element is entirely visible in the current viewport:

function elementInViewport(el) {
  var top = el.offsetTop;
  var left = el.offsetLeft;
  var width = el.offsetWidth;
  var height = el.offsetHeight;

  while(el.offsetParent) {
    el = el.offsetParent;
    top += el.offsetTop;
    left += el.offsetLeft;
  }

  return (
    top >= window.pageYOffset &&
    left >= window.pageXOffset &&
    (top + height) <= (window.pageYOffset + window.innerHeight) &&
    (left + width) <= (window.pageXOffset + window.innerWidth)
  );
}

You could modify this simply to determine if any part of the element is visible in the viewport:

function elementInViewport2(el) {
  var top = el.offsetTop;
  var left = el.offsetLeft;
  var width = el.offsetWidth;
  var height = el.offsetHeight;

  while(el.offsetParent) {
    el = el.offsetParent;
    top += el.offsetTop;
    left += el.offsetLeft;
  }

  return (
    top < (window.pageYOffset + window.innerHeight) &&
    left < (window.pageXOffset + window.innerWidth) &&
    (top + height) > window.pageYOffset &&
    (left + width) > window.pageXOffset
  );
}
link|flag
Original function posted had a mistake. Needed to save the width/height before reassigning el... – Prestaul Sep 24 '08 at 2:56
It also might be wise to abstract this a bit and create some utility functions. I use one called getViewport that returns the top/left/bottom/right of the visible window, and one called getPosition that finds the top/left of an element. – Prestaul Sep 24 '08 at 3:01
This is an excellent function, Thanks very much. – Neil Aitken Oct 5 at 12:47
vote up 0 vote down

Check the style.display and style.visibility properties of the DOM Element.

http://www.w3schools.com/htmldom/prop_style_display.asp

http://www.w3schools.com/HTMLDOM/prop_style_visibility.asp

link|flag
vote up 2 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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