Explorar el Código

Listing 5.7: insert links with insertAfter().

Frederic G. MARAND hace 9 años
padre
commit
4c7bb55200
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Chapter 5/05.js

+ 1 - 1
Chapter 5/05.js

@@ -13,6 +13,6 @@ $(document).ready(function () {
   });
 
   // Add "back to top" links.
-  $('<a href="#top">back to top</a>');
+  $('<a href="#top">back to top</a>').insertAfter('div.chapter p');
   $('<a id="top"></a>');
 });