$(document).ready(function() { // Use attr() to add an id, rel, and title. $('div.chapter a[href*="wikipedia"]').attr({ rel: 'external', title: function() { return 'Learn more about ' + $(this).text() + ' at Wikipedia.'; }, id: function(index, oldValue) { return 'wikilink-' + index; } }); // Add "back to top" links. $('back to top').insertAfter('div.chapter p'); $('').prependTo('body'); // Create footnotes. var $notes = $('
    ').insertBefore('#footer'); $('span.footnote').each(function(index) { $('' + (index + 1) + '').insertBefore(this); $(this).appendTo($notes).wrap('
  1. '); }); });