/ Published in: JavaScript
Expand |
Embed | Plain Text
Element.implement({ isFullyVisible: function() { if(this.isVisible()) { var coord = this.getCoordinates(), winScroll = window.getScroll(); return winScroll.y <= coord.top; } else { return false; } } });
You need to login to post a comment.
