05.js 224 B

123456789101112
  1. $(document).ready(function () {
  2. 'use strict';
  3. $('div.chapter a').attr({
  4. rel: 'external',
  5. title: 'Learn more at Wikipedia',
  6. id: function (index, oldValue) {
  7. return 'wikilink-' + index;
  8. }
  9. });
  10. });