https://github.com/UseAllFive/true-visibility
Checks if a DOM element is truly visible
https://github.com/UseAllFive/true-visibility
Last synced: about 1 year ago
JSON representation
Checks if a DOM element is truly visible
- Host: GitHub
- URL: https://github.com/UseAllFive/true-visibility
- Owner: UseAllFive
- License: other
- Created: 2012-09-06T17:43:17.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2016-02-27T10:44:26.000Z (over 10 years ago)
- Last Synced: 2025-03-27T20:43:15.976Z (about 1 year ago)
- Language: JavaScript
- Homepage: http://useallfive.com/javascript-tool-detect-if-a-dom-element-is-truly-visible/
- Size: 186 KB
- Stars: 111
- Watchers: 13
- Forks: 26
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
true-visibility
===============
Checks if a DOM element is truly visible
### Usage
``` Javascript
var my_element = document.getElementById('my-element');
//-- Returns true/false
my_element.isVisible(my_element);
```