Skip to content

Instantly share code, notes, and snippets.

@ctrochalakis
Created June 8, 2010 09:35
Show Gist options
  • Save ctrochalakis/429817 to your computer and use it in GitHub Desktop.
Save ctrochalakis/429817 to your computer and use it in GitHub Desktop.
Quick TOC creation
var create_toc = function create_toc(){
var toc = '<div id="toc_container"><ul id="toc"><li><strong>Περιεχόμενα</strong></li></ul></div>';
$('h2').after(toc);
$('h3').each( function (){
var text = $(this).text();
var anchor = '#' + text.replace(/ /g,'+');
$('#toc').append('<li><a href="'+ anchor + '">' + text + '</a></li>');
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment