Explorar o código

Exercise 2: add a self-rmoving "you were here" paragraph on click.

Frederic G. MARAND %!s(int64=8) %!d(string=hai) anos
pai
achega
9d08235892
Modificáronse 1 ficheiros con 7 adicións e 0 borrados
  1. 7 0
      Chapter 5/05.js

+ 7 - 0
Chapter 5/05.js

@@ -54,4 +54,11 @@ $(document).ready(function () {
       .text($clonedCopy.text())
       .prependTo($parentParagraph);
   });
+
+  $('a[href="#top"]').click(function (event) {
+    var $youWereHere = $(this).after($('<p>You were here</p>')).next('p');
+    setTimeout(function () {
+      $youWereHere.remove();
+    }, 3000)
+  });
 });