jQuery Plugin For Handling Scroll End Event - scrollend

File Size: 11.7 KB
Views Total: 814
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
jQuery Plugin For Handling Scroll End Event - scrollend

scrollend is a minimal jQuery plugin that listens to the browser scroll events and performs a callback function on scroll end.

See also:

How to use it:

1. Load the necessary jQuery library and the jQuery scrollEnd plugin in the html page.

<script src="path/to/jquery.min.js"></script>
<script src="path/to/jquery.scrollend.js"></script>

2. Execute a callback on scroll end.

// delay time = 250ms
$(window).on('scrollend', 250, function() {
    // do something
});

This awesome jQuery plugin is developed by nielse63. For more Advanced Usages, please check the demo page or visit the official website.