Last active
May 8, 2016 09:18
-
-
Save julesbou/df33725bd7a23028b13a339af163ef7d to your computer and use it in GitHub Desktop.
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
window.$ = document.querySelector.bind(document) | |
window.$$ = document.querySelectorAll.bind(document) | |
HTMLElement.prototype.$ = HTMLElement.prototype.querySelector | |
HTMLElement.prototype.$$ = HTMLElement.prototype.querySelectorAll | |
// usage: $('.select-on-element') | |
// usage: $$('.select-a-list-of-element') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment