1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00
limesurvey_ynh/sources/third_party/jquery-bindWithDelay
2015-05-31 13:46:25 +02:00
..
demo [enh] Restart with a new repo (the older was a fork of LimeSurvey repo) 2015-05-31 13:46:25 +02:00
test [enh] Restart with a new repo (the older was a fork of LimeSurvey repo) 2015-05-31 13:46:25 +02:00
bind.html [enh] Restart with a new repo (the older was a fork of LimeSurvey repo) 2015-05-31 13:46:25 +02:00
bindWithDelay.js [enh] Restart with a new repo (the older was a fork of LimeSurvey repo) 2015-05-31 13:46:25 +02:00
index.html [enh] Restart with a new repo (the older was a fork of LimeSurvey repo) 2015-05-31 13:46:25 +02:00
onDelay.js [enh] Restart with a new repo (the older was a fork of LimeSurvey repo) 2015-05-31 13:46:25 +02:00
README [enh] Restart with a new repo (the older was a fork of LimeSurvey repo) 2015-05-31 13:46:25 +02:00

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);