要素リストの中央に要素を追加しようとしています。
jQuery with insertAfter
methodを使用して追加し、を適用してみisotope('reLayout')
ました。ただし、これは実際には機能しません。
$('#insertAfter a').click(function() {
var $newEl = $(fakeElement.getGroup()).first();
$newEl.insertAfter($container.children().eq(3));
$container.isotope('reLayout');
return false;
});
それを機能させる方法はありますか?ありがとう