Skip to content

Instantly share code, notes, and snippets.

@adamhopkinson
Created November 16, 2015 14:45
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 adamhopkinson/82b3fec9583946cb5e2d to your computer and use it in GitHub Desktop.
Save adamhopkinson/82b3fec9583946cb5e2d to your computer and use it in GitHub Desktop.
Outputting a table of contents to the console
$('#article-content').find('h1,h2,h3,h4,h5,h6').each(function(i,el) {console.log(i + "\t" + el.tagName + "\t" + $(el).text())})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment