私の関数は要素の内部を 2 回コピーして追加することになっていますが、何らかの理由で jQuery は最初の追加後に実行を停止します。私はなぜなのか理解していない。
$(".testowyUl").prepend(function () {
var $temp = $(this).children().clone();
var $temp2 = document.createElement("div");
$temp2.append($temp);
$temp2.append($(this).children().clone());
return $temp2.children();
});