Mousemove Events:

Debounce Inmediate: _.debounce(fn, 200, true);

Debounce Inmediate: $.debounce(200, true, fn);

Debounce: _.debounce(fn, 200);

Debounce: $.debounce(200, false, fn);

Throttle with trailing: _.throttle(fn, 200);

Throttle with trailing: $.throttle(200, false, fn);

Throttle: $.throttle(200, true, fn);

Fork me on GitHub