on-off
v4.0.0
Published
Add/remove DOM events
Downloads
47
Maintainers
Readme
on-off
Add/remove DOM events
Install
npm install on-off
Usage
var on = require('on-off')
var off = on.off
on(document.body, 'click', hello) // adds the event listener
off(document.body, 'click', hello) // removes
on(document.body.children, 'click', hello) // add to array or NodeList of elements elements
on('a', 'click', hello) // add to multiple elements via selector
on('a', 'click touchstart', hello) // add multiple listeners at once
function hello () {
console.log('hello!')
}
Related
- fregante/select-dom Slim alternative to
document.querySelector/All
Changelog
- Version 3.0.0: Added support for multiple elements, selectors, and multiple types
- Version 1.0.0: Added test runner and removed IE8 support
- Version 0.0.3: Republished 0.0.2
- Version 0.0.2: Original version pre-liberation
License
BSD, originally developed by Azer Koçulu, maintained by Federico Brigante after v1