This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* multipleEventsListeners.js | |
* Add the capability to attach multiple events to an element, just like jQuery does | |
* https://gist.github.com/juanbrujo/a1f77db1e6f7cb17b42b | |
*/ | |
function multipleEventsListeners(elem, events, func) { | |
var event = events.split(' '); | |
for (var i = 0; i < event.length; i++) { | |
elem.addEventListener(event[i], func, false); |