1234567891011121314151617181920212223 |
- $(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.
- $('<a href="#top">back to top</a>').insertAfter('div.chapter p');
- $('<a id="top"></a>').prependTo('body');
- // Create footnotes.
- var $notes = $('<ol id="notes"></ol>').insertBefore('#footer');
- $('span.footnote').each(function(index) {
- $('<sup>' + (index + 1) + '</sup>').insertBefore(this);
- $(this).appendTo($notes).wrap('<li></li>');
- });
- });
|