Hi all, I'm a bit new to jQuery and hope somebody can help me out.
I'm trying to change an element (li) to another element (div) after the (li) has been dropped.
Sample code:
$("#inputEl>li").draggable({
revert: true,
opacity: 0.4,
helper: "clone"
});
$("#dropEl")
.droppable({
accept: ".drag",
hoverClass: "dropElhover",
drop: function(ev, ui) {
// change the li element to div here
}
});
The problem is, when i use
drop: function(ev, ui) {
$(ui.draggable).replaceWith("<div>Some content</div>");
}
the original draggable elements will be disabled when the function above is triggered.
I'm using the latest jQuery and jQuery UI stable versions.