Browse Source

Append to content

Joachim M. Giæver 3 years ago
parent
commit
57255d66d1
1 changed files with 1 additions and 2 deletions
  1. 1 2
      webflow-load-more.js

+ 1 - 2
webflow-load-more.js

@@ -3,8 +3,7 @@ $(document).ready(function () {
         e.preventDefault();
         jQuery.get($(this).attr('href'), function (data) {
             console.log(data);
-
-            console.log($(data).children('.w-dyn-item'));
+            $('.w-dyn-items').append($(data).children('.w-dyn-item'));
         })
     });
 });