# Find if an element is completely visible in the viewport


Here is the JS code to find out if a given element on the DOM is completely visible in the browser window viewport or not:

```javascript
function isInViewport(element) {
  var rect = element.getBoundingClientRect();
  var html = document.documentElement;
  if (
    rect.top >= 0 &&
    rect.left >= 0 &&
    rect.bottom <= (window.innerHeight || html.clientHeight) &&
    rect.right <= (window.innerWidth || html.clientWidth)
  ) {
    return true;
  } else {
    return false;
  }
}

```
