Are there other ways to add a cloned item to a container than:
$(".product").draggable({
helper: 'clone'
});
$("#container").append(ui.draggable.clone());
append simply puts an item after the last item in the #container. I want to decide where the position should be.
a source
to share