Browse Source

Append to content

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

+ 1 - 2
webflow-load-more.js

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