Created
December 16, 2024 16:49
-
-
Save nicholaswmin/faa9cf3be387c177bf6f74e5151cb531 to your computer and use it in GitHub Desktop.
sensible DOM in 3 lines of code
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
/* examples: | |
$$('.button').map(el => el.on('click', console.log)) | |
$('body').on('mouseenter', console.log) */ | |
Node.prototype.on = Node.prototype.addEventListener | |
window.$ = document.querySelectorAll.bind(document) | |
window.$$ = (...a) => Array.from(document.querySelectorAll(...a)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment