https://github.com/bgrins/bindWithDelay
jQuery Plugin For Delayed Event Execution
https://github.com/bgrins/bindWithDelay
Last synced: 4 months ago
JSON representation
jQuery Plugin For Delayed Event Execution
- Host: GitHub
- URL: https://github.com/bgrins/bindWithDelay
- Owner: bgrins
- Created: 2010-08-06T14:03:55.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2016-03-23T03:26:44.000Z (almost 10 years ago)
- Last Synced: 2025-04-02T03:23:18.545Z (12 months ago)
- Language: JavaScript
- Homepage: https://bgrins.github.io/bindWithDelay/
- Size: 318 KB
- Stars: 154
- Watchers: 8
- Forks: 29
- Open Issues: 3
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- awesome-frontend - bindWithDelay - jQuery Plugin For Delayed Event Execution
- awesome-frontend - bindWithDelay - jQuery Plugin For Delayed Event Execution
- awesome-front-end - bindWithDelay - jQuery Plugin For Delayed Event Execution
README
bindWithDelay jQuery plugin
Author: Brian Grinstead
MIT license: http://www.opensource.org/licenses/mit-license.php
http://github.com/bgrins/bindWithDelay
http://briangrinstead.com/files/bindWithDelay
Usage:
See http://api.jquery.com/bind/
.bindWithDelay( eventType, [ eventData ], handler(eventObject), timeout, throttle )
Examples:
$("#foo").bindWithDelay("click", function(e) { }, 100);
$(window).bindWithDelay("resize", { optional: "eventData" }, callback, 1000);
$(window).bindWithDelay("resize", callback, 1000, true);