いくつかのhtml5/jqueryドラッグアンドドロップ機能を実行して、DOM要素のセットを並べ替えています。これらのDOM要素に対応するオブジェクトの配列を変更したいのですが、その方法がよくわかりません。これがjavascriptです:
var draggedIndex = $('.segmentListItem').index($(draggedItem));
var targetIndex = $('.segmentListItem').index($(this));
var playlist = jwplayer().getPlaylist(); //MH - the array for which I want to change the order
if (draggedIndex > targetIndex){
$(draggedItem).insertBefore($(this));
//MH - need to move the playlist item at the index of the dragged item before index the target item as well
} else {
$(draggedItem).insertAfter($(this));
//MH - need to move the playlist item at the index of the dragged item before index the target item as well
}