Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function checkVisible(elmId) {
  2. var rect = elm.getBoundingClientRect();
  3. var viewHeight = Math.max(document.documentElement.clientHeight, window.innerHeight);
  4. return !(rect.bottom < 0 || rect.top - viewHeight >= 0);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement