0.2.0 • Published 10 years ago

avant v0.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

avant

Cross-browser JavaScript events module

$ npm install avant --save

Basic usage

var avant = require('avant');
avant.listen(document, 'click', function(event) {
  console.log(event)
});

API

avant.listen(node, type, listener)

  • Add an event listener for the specified event type

avant.unlisten(node, type, listener)

  • Remove the event listener for the specified event type

avant.support(type, node|tagname?)

  • Detect if the node supports the event type
  • boolean

License

MIT