05.js 476 B

123456789101112131415161718
  1. $(document).ready(function () {
  2. 'use strict';
  3. // Use attr() to add an id, rel, and title.
  4. $('div.chapter a[href*="wikipedia"]').attr({
  5. rel: 'external',
  6. title: function () {
  7. return 'Learn more about ' + $(this).text() + ' at Wikipedia.';
  8. },
  9. id: function (index, oldValue) {
  10. return 'wikilink-' + index;
  11. }
  12. });
  13. // Add "back to top" links.
  14. $('<a href="#top">back to top</a>').insertAfter('div.chapter p');
  15. $('<a id="top"></a>');
  16. });