Skip to content

Instantly share code, notes, and snippets.

@YuriBrunetto
Created September 20, 2016 17:31
Show Gist options
  • Save YuriBrunetto/d06b70541b9de1911adda72ecf9952c8 to your computer and use it in GitHub Desktop.
Save YuriBrunetto/d06b70541b9de1911adda72ecf9952c8 to your computer and use it in GitHub Desktop.
ES6 shortcut - Get elements like jQuery
const $ = document.querySelector.bind(document)
// id
let divs = [
$("#div"),
$("#input")
]
// class
let other = [
$(".div"),
$(".other")
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment