私はこのスクリプトを持っています。
var $bigList = $('.list-products'), group;
while((group = $bigList.find('li:gt(3):lt(4)').remove()).length) {
$('<ul class="list-products"/>').append(group).appendTo('.box-products');
}
しかし、すべての周りにdivが必要です。
$('<div class="container"><ul class="list-products"/>').append(group).appendTo('.box-products');
しかし、それは機能していません。私は何を間違っていますか?