Skip to content

Instantly share code, notes, and snippets.

@nicholaswmin
Created December 16, 2024 16:49
Show Gist options
  • Save nicholaswmin/faa9cf3be387c177bf6f74e5151cb531 to your computer and use it in GitHub Desktop.
Save nicholaswmin/faa9cf3be387c177bf6f74e5151cb531 to your computer and use it in GitHub Desktop.
sensible DOM in 3 lines of code
/* 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