Skip to content

Instantly share code, notes, and snippets.

@jongacnik
Created August 18, 2020 05:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jongacnik/7f23ee93e51fc6e3c8a4ee65083ae129 to your computer and use it in GitHub Desktop.
Save jongacnik/7f23ee93e51fc6e3c8a4ee65083ae129 to your computer and use it in GitHub Desktop.
simple dom, jquery esque
const $ = (selector, parent = document) => parent.querySelector(selector)
const $$ = (selector, parent = document) => [...parent.querySelectorAll(selector)]
const createNode = html => {
return new DOMParser().parseFromString(html, 'text/html').body.firstChild
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment