Info
Version: | 1.1.0 |
Author(s): | Ben Alman |
Last Update: | Wednesday, December 7, 2011 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | http://benalman.com/projects/jquery-throttle-debounce-plugin/ |
NuGet Url: | https://www.nuget.org/packages/jQuery.ba-throttle-debounce |
Install
Install-Package jQuery.ba-throttle-debounce
dotnet add package jQuery.ba-throttle-debounce
paket add jQuery.ba-throttle-debounce
jQuery.ba-throttle-debounce Download (Unzip the "nupkg" after downloading)
Dependencies
1 package depend on this package.
Tags
Passing a delay and callback to $.throttle returns a new function that will execute no more than once every delay milliseconds. Passing a delay and callback to $.debounce returns a new function that will execute only once, coalescing multiple sequential calls into a single execution at either the very beginning or end.