Entries Published On May, 2018
How to see all devices / PC connected on your network
In this video I have shown how we can see all devices / PC in same network. I have shown 2 ways to check the devices, 1. Using CMD – Command Prompt The command will NET VIEW show all devices connected in network. net view . Now to see all the active IP address in …
How to load images dynamically (or lazily) when users scrolls them into view
In this video I have shown how to load images lazily when user scrolls into the view of page. This is the basic method all online shopping websites are using. Source Code. <html> <head> <script src=”https://cdn.jsdelivr.net/npm/lazyload@2.0.0-beta.2/lazyload.js”></script> <script> window.addEventListener(“load”, function(event) { lazyload(); }); </script> </head> <body> <img class=”lazyload” src=”load.gif” data-src=”img/1.jpg” width=”765″ height=”574″ /> <img class=”lazyload” src=”load.gif” …