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:
function isInViewport(element) {
var rect = element.getBoundingClientRect();
var html = document.documentElement;
if (
...
blog.adarshkonchady.com1 min read