Skip to content

Instantly share code, notes, and snippets.

@delineas
Created January 1, 2019 20:37
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 delineas/20c8957dccdc4b13048b5e7378ff8bde to your computer and use it in GitHub Desktop.
Save delineas/20c8957dccdc4b13048b5e7378ff8bde to your computer and use it in GitHub Desktop.
Get All H3 Titles
var text = [...document.getElementsByTagName('h3')].map( i => i.innerHTML )
console.table(text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment