Skip to content

Instantly share code, notes, and snippets.

@Adam-Mould
Created July 9, 2018 10:48
Show Gist options
  • Save Adam-Mould/144257bba5449896840a9bcb93efb813 to your computer and use it in GitHub Desktop.
Save Adam-Mould/144257bba5449896840a9bcb93efb813 to your computer and use it in GitHub Desktop.
Array.from(document.querySelectorAll('[id]'))
.map(domNode => domNode.id)
.filter((id, index, self) => id.length > 0 && self.indexOf(id) !== index)
.forEach(id => console.warn(`Multiple IDs #${id}`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment