0.2.4 • Published 8 years ago

component-delegate v0.2.4

Weekly downloads
1,752
License
-
Repository
github
Last release
8 years ago

delegate

Low-level event delegation component.

Installation

$ component install component/delegate

Example

var delegate = require('delegate');
var ul = document.querySelector('ul');
var n = 0;

var fn = delegate.bind(ul, 'li a', 'click', function(e){
  console.log(e.target);
  console.log(e.delegateTarget); // => "<a>"
  if (++n == 3) {
    console.log('unbind');
    delegate.unbind(ul, 'click', fn, false);
  }
}, false);

API

.bind(el, selector, type, callback, capture)

Bind and return a callback which may be passed to .unbind().

.unbind(el, type, callback, capture)

Unbind.

License

MIT