Skip to content

FGRibreau/jquery-plugin-debounceArgs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

jQuery-debounceargs - Debounce calls while saving each call's arguments Gittip

Usage

var func = $.debounceargs(10000, function(args){console.log(args);});

func(1);
func(1,2);
func("string", [1,2,3]);
func();

Wait 10 seconds and the console will print: [[1], [1, 2], ["string", [1, 2, 3]], []]

Donate

Donate Bitcoins

About

jQuery DebounceArgs plugin - Debounce call while saving each arguments

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published