Created
November 6, 2015 10:49
-
-
Save MichaelCPell/d89efa0397abc3d21793 to your computer and use it in GitHub Desktop.
Making a Table of Contents from H2's
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Step 1: Collect all of the H2's into a variable | |
$headings = $("h2") | |
// Step 2: Iterate through them and add some text | |
$.each($headings, function(index, value){ | |
$("#toc-container").append("<li>" + $(value).html() +"</li>") | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dude, you're the man! I got this to work on the chapter show page. Now I need to figure out how to make the "h2" list into anchors within the content.