Skip to content

ryanve/avant

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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