1
Ich habe ein Problem, wo ich die HTML eines ziehbaren Helferelements auf Tropfen ändern muss, wie unten? irgendwelche Vorschläge?JQuery UI Draggable - Ändern Sie HTML von dropped Helferelement
<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 ?? --
-- -------------------------------- --
}
});