Last active
August 30, 2024 15:27
-
-
Save juanbrujo/a1f77db1e6f7cb17b42b to your computer and use it in GitHub Desktop.
Add the capability to attach multiple events to an element, just like jQuery does
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); | |
} | |
} | |
/* | |
Use: | |
var input = document.querySelector('input'); | |
multipleEventsListeners(input, 'keyup change', function(e){ | |
console.log(this.value); | |
}); | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With this tool Bloxstrap open-source, users can safely add fonts, modify textures, and change typefaces without any risks.