https://github.com/fetch/jquery.alldone
jQuery plugin to bind events on multiple elements and execute a callback when every element has triggered one of the supplied events
https://github.com/fetch/jquery.alldone
Last synced: 9 months ago
JSON representation
jQuery plugin to bind events on multiple elements and execute a callback when every element has triggered one of the supplied events
- Host: GitHub
- URL: https://github.com/fetch/jquery.alldone
- Owner: fetch
- Created: 2013-03-28T13:50:13.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-04-08T15:19:56.000Z (about 13 years ago)
- Last Synced: 2025-06-01T15:53:00.124Z (11 months ago)
- Language: JavaScript
- Homepage:
- Size: 109 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
jQuery.alldone
==============
jQuery plugin to bind events on multiple elements and execute a callback when every element has triggered one of the supplied events.
**Usage:**
```javascript
$('div[data-video],div[data-tweet]').allDone('video:loaded tweet:loaded', function(){
// Reposition DOM elements for example
});
```