/* * * ATTRIBUTE MANIPULATION * */ // Use .attr() to add "inhabitants" class to all paragraphs. $(document).ready(function() { $('p').each(function(index) { var currentClass = $(this).attr('class'); $(this).attr('class', currentClass + ' inhabitants'); }); }); // Use attr() to add an id, rel, and title. $(document).ready(function() { $('div.chapter a[href*=wikipedia]').each(function(index) { var $thisLink = $(this); $(this).attr({ 'rel': 'external', 'id': 'wikilink-' + index, 'title': 'learn more about ' + $thisLink.text() + ' at Wikipedia' }); }); }); /* * * BACK-TO-TOP LINKS * */ $(document).ready(function() { $('').prependTo('body'); $('back to top').insertAfter('div.chapter p:gt(2)'); }); /* * * FOOTNOTES * */ $(document).ready(function() { $('