以下のように、ドロップ時にドラッグ可能なヘルパー要素の html を変更する必要があるという問題がありますか? 助言がありますか?
<ul id="submenu">
<li><div class="thumb"></div></li>
<li><div class="thumb"></div></li>
</ul>
<ul id="sortable">
<li></li>
</ul>
--------------
--------------
// #### DRAGGABLE ####
$(".thumb").draggable({
helper: "clone",
appendTo: 'body',
connectToSortable: "ul#sortable",
revert: "invalid",
stop: function(event,ui) {
-- -------------------------------- --
-- Change html of ui.helper here ?? --
-- -------------------------------- --
}
});