1.0.8 • Published 8 years ago

addlistener.js v1.0.8

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

addlistener.js

Helper functions for adding and removing listeners to Node and NodeList objects. Adds on, off and once methods to the Node, NodeList and window prototypes.

Installation

$ npm install --save addlistener.js

Example

import 'addlistener.js';

// Adding a click listener to element myFoobar
let myElement = document.getElementById('#foobar');
const removeClickListener = myElement.on('click', (event) => { ... });

// The addListener returns a functions which remove the listener when invoked:
removeClickListener();

// Futhermore, you can use the on, off and once on element(s):
let myElements = document.querySelectorAll('.foobar');
myElements.once('click' (event) => { ... });

// And on the window object
window.on('resize', (event) => { ... });
1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago