Преглед изворни кода

Listing 5.9: moving footnotes with insertBefore().

Frederic G. MARAND пре 9 година
родитељ
комит
771bb3b173
1 измењених фајлова са 5 додато и 0 уклоњено
  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');
 });