Skip to content

Instantly share code, notes, and snippets.

@sandipchitale
Created July 27, 2019 19:03
Show Gist options
  • Save sandipchitale/1c8d955c780d5735d5473aba021f9d62 to your computer and use it in GitHub Desktop.
Save sandipchitale/1c8d955c780d5735d5473aba021f9d62 to your computer and use it in GitHub Desktop.
One liner to return all classes used by the page. #javascript
[].concat(...[...document.querySelectorAll('*')].map(e=>[...e.classList])).filter((d,i,a)=>a.indexOf(d)==i).sort()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment