Fix for Fix for Table of Contents for nodes

  1. $('<div id="node-toc" class="toc"><a name="top" /><p class="title">Table of Contents</p><ul></ul></div>').prependTo('div.node div.content');
  2. $(".field > .field-label").each(function() {
  3.   $( '<li><a href="#' + this.innerHTML + '">' + this.innerHTML + '</a></li>').appendTo("#node-toc > ul");
  4.   $(this).append( '<a name="' + this.innerHTML + '"></a>');
  5. }).append('<a href="#top" class="to-top" target="_self">top<a>');
  6.  
  7. Added the top link after field label

Submit Fix

Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Select the syntax highlighting mode to use.