Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jswhisperer/8903911 to your computer and use it in GitHub Desktop.

Select an option

Save jswhisperer/8903911 to your computer and use it in GitHub Desktop.
Children, Clone, Contains, Contains Selector nojq
// Children
el.children
// Clone
el.cloneNode(true);
// Contains
el !== child && el.contains(child);
// Contains Selector
el.querySelector(selector) !== null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment