Infinite scrolling is a technique that allowing users to scroll through a massive chunk of content with no finishing-line in sight. This technique simply keeps refreshing a page when you scroll down it. Tempting as it may sound, the technique isn’t a one-size-fits-all solution for every site or app. When we need to implement the …
Height of the hidden element
In some cases, we need to get the height of the hidden element in HTML. But the default jquery functionalities getting heights are not working for the hidden element. That is, all of the following functionalities doesn’t work. height() outerHeight() innerHeight() To fix this issue, we can use the following library to get the height …
jquery.scrollbar
It is a Javascript library to display customized scrollbar on the browser.Instead of customizing the default scrollbar’s styling, it hides the default scrollbar and generate a new scrollbar using html elements.https://github.com/gromo/jquery.scrollbar
jQuery Debounce Functionality
Sometimes we need to run the functionalities after some delay not immediately. For example, Send the search requests after a delay in the search form. Show the announcement bar in some delay after the site is loaded. There are several libraries to implement the Debounce functionality and we can use one of them in our …