All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.elementIsOnScreen.js Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version
var rect = arguments[0].getBoundingClientRect();
return (
    rect.top >= 0 && rect.left >= 0 && rect.bottom <= (
        window.innerHeight || document.documentElement.clientHeight) && rect.right <= (window.innerWidth || document.documentElement.clientWidth)
    );




© 2015 - 2024 Weber Informatics LLC | Privacy Policy