Browse Source

Listing 5.9: moving footnotes with insertBefore().

Frederic G. MARAND 9 năm trước cách đây
mục cha
commit
771bb3b173
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      Chapter 5/05.js

+ 5 - 0
Chapter 5/05.js

@@ -16,4 +16,9 @@ $(document).ready(function () {
   $('<a href="#top">back to top</a>').insertAfter('div.chapter p');
   $('<a id="top"></a>').prependTo('body');
   // insertBefore <elem> prependTo <children /> appendTo </elem> insertAfter
+
+  // Create footnotes.
+  $('span.footnote').insertBefore('#footer');
+  // This works just as well, in spite of what the book says.
+  // $('span.footnote').insertAfter('div.chapter');
 });