🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

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

scrolling

Documentation

jQuery scrollend

A jQuery plugin that allows for window scroll-start event handling.

Demo

See the demo here.

Usage

Include both the jQuery library and the scrollend plugin in your project:

<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="js/jquery.scrollend.js"></script> 

Execute the scrollend method to an element, instatiate options (if so desired), and run a callback functions:

$(window).scrollend({ 	delay : 250 }, function() { 	// ... });

Or bind an element to the event, passing in options and event handler:

$(window).on('scrollend', 250, function() { 	// ... });

If you want to use the default delay setting of 250ms, simply don't include the options object:

$(window).scrollend(function() { 	// ... });

Options

The only option available is the delay time (in milliseconds) to execute the callback after the browser has stopped being resized. The default value is 250ms. This can be passed as either a number or object:

// As a number $(window).on('scrollend', 250, function() { 	// ... });  // As an object $(window).on('scrollend', { delay : 250 }, function() { 	// ... });

License

This plugin is licensed under the MIT license. A copy of the license is included in this package.

Bitdeli Badge


You May Also Like