Bachir Soussi Chiadmi 344dae1543 import from la bonne adresse and first refactoring for ouidade.com 7 years ago
..
.bower.json 344dae1543 import from la bonne adresse and first refactoring for ouidade.com 7 years ago
README.md 344dae1543 import from la bonne adresse and first refactoring for ouidade.com 7 years ago
bower.json 344dae1543 import from la bonne adresse and first refactoring for ouidade.com 7 years ago
eventie.js 344dae1543 import from la bonne adresse and first refactoring for ouidade.com 7 years ago
package.json 344dae1543 import from la bonne adresse and first refactoring for ouidade.com 7 years ago

README.md

eventie - event binding helper

Makes dealing with events in IE8 bearable. Supported by IE8+ and good browsers.

var elem = document.querySelector('#my-elem');
function onElemClick( event ) {
  console.log( event.type + ' just happened on #' + event.target.id );
  // -> click just happened on #my-elem
}

eventie.bind( elem, 'click', onElemClick );

eventie.unbind( elem, 'click', onElemClick );

Install

Download eventie.js

Install with Bower :bird: bower install eventie

Install with npm :truck: npm install eventie

Install with Component :nut_and_bolt: component install desandro/eventie

IE 8

eventie add support for event.target and .handleEvent method for Internet Explorer 8.

MIT license

eventie is released under the MIT license.