Skip to content

Instantly share code, notes, and snippets.

@FFKL
Created June 16, 2019 15:45
Show Gist options
  • Save FFKL/edc8b2f6253833b23869fae39d88529d to your computer and use it in GitHub Desktop.
Save FFKL/edc8b2f6253833b23869fae39d88529d to your computer and use it in GitHub Desktop.
Simple jQuery
const $ = selector => new Proxy( document.querySelector(selector)||Element, { get: (target, key) => Reflect.get(target, key) } ) ;
Element.prototype.on = Element.prototype.addEventListener;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment