Skip to content

Instantly share code, notes, and snippets.

@mt3o
Created December 12, 2022 08:06
Show Gist options
  • Save mt3o/7917f2b263d47272bcba51fe7d492f93 to your computer and use it in GitHub Desktop.
Save mt3o/7917f2b263d47272bcba51fe7d492f93 to your computer and use it in GitHub Desktop.
Get all siblings of single DOM node
function siblings(el) {
return el.closest('*:not(:scope)').querySelectorAll(':scope > *');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment