lhl 55a7808c4f create | 6 ay önce | |
---|---|---|
.. | ||
demo | 6 ay önce | |
dist | 6 ay önce | |
src | 6 ay önce | |
test | 6 ay önce | |
.editorconfig | 6 ay önce | |
.travis.yml | 6 ay önce | |
karma.conf.js | 6 ay önce | |
package.json | 6 ay önce | |
readme.md | 6 ay önce |
Lightweight event delegation.
You can get it on npm.
npm install delegate --save
If you're not into package management, just download a ZIP file.
var delegate = require('delegate');
<script src="dist/delegate.js"></script>
document
)delegate('.btn', 'click', function(e) {
console.log(e.delegateTarget);
}, false);
delegate(document.body, '.btn', 'click', function(e) {
console.log(e.delegateTarget);
}, false);
delegate('.container', '.btn', 'click', function(e) {
console.log(e.delegateTarget);
}, false);
delegate(document.querySelectorAll('.container'), '.btn', 'click', function(e) {
console.log(e.delegateTarget);
}, false);
var delegation = delegate(document.body, '.btn', 'click', function(e) {
console.log(e.delegateTarget);
}, false);
delegation.destroy();
Note: selectors are always treated as multiple elements, even if one or none are matched. delegate()
will return an array.
var delegations = delegate('.container', '.btn', 'click', function(e) {
console.log(e.delegateTarget);
}, false);
delegations.forEach(function (delegation) {
delegation.destroy();
});
Latest ✔ | Latest ✔ | Latest ✔ | 9+ ✔ | Latest ✔ | Latest ✔ |
MIT License © Zeno Rocha