ソースを参照

Listing 5.19: sub-query with find()..end().

Frederic G. MARAND 8 年 前
コミット
c8b561a45a
1 ファイル変更3 行追加0 行削除
  1. 3 0
      Chapter 5/05.js

+ 3 - 0
Chapter 5/05.js

@@ -48,6 +48,9 @@ $(document).ready(function () {
     var $clonedCopy = $(this).clone();
     $clonedCopy
       .addClass('pulled')
+      .find('span.drop')
+      .html('…')
+      .end()
       .prependTo($parentParagraph);
   });
 });